Tagged Questions
loading and executing a new child process
8
votes
2answers
167 views
Argument passing strategy - environment variables vs. command line
Most of the applications we developers write need to be externally parametrized at startup. We pass file paths, pipe names, TCP/IP addresses etc. So far I've been using command line to pass these to ...
5
votes
2answers
427 views
C# Detecting Spawned Processes
I'm writing a piece of c# code that launches an installer and waits for it to return before continuing with other stuff.
I'm having trouble with certain installers that spawn other processes with the ...
4
votes
5answers
323 views
linux: suspend process at startup
I would like to spawn a process suspended, possibly in the context of another user (e.g. via sudo -u ...), set up some iptables rules for the spawned process, continue running the process, and remove ...
4
votes
2answers
344 views
Processing messages from a child process thorough stderr and stdout with Python
My python code spawns the child process, and it prints out messages both stdout and stderr.
I need to print them differently.
I have the following code to spawn child process and get the stdout ...
4
votes
2answers
7k views
spawning process from python
im spawning a script that runs for a long time from a web app like this:
os.spawnle(os.P_NOWAIT, "../bin/producenotify.py", "producenotify.py", "xx",os.environ)
the script is spawned successfully ...
4
votes
4answers
4k views
What is the difference between spawn and exec?
I'm learning to write a TCL (expect) scripts and I notice that some examples show to use spawn, while others show the command exec. I tried googling, but can't find what is the difference?
Suppose I ...
3
votes
2answers
121 views
Indefinite daemonized process spawning in Python
I'm trying to build a Python daemon that launches other fully independent processes.
The general idea is for a given shell command, poll every few seconds and ensure that exactly k instances of the ...
3
votes
1answer
140 views
twisted.internet.reactor.spawnProcess raises OSError(13, 'Permission denied')
When I try running a python script via `twisted.internet.reactor.spawnProcess':
from twisted.internet import protocol, reactor
class ProcessProtocol(protocol.ProcessProtocol):
def ...
3
votes
1answer
85 views
Spawning functions without exporting them
I am new to erlang and have a bit of a headache with the following scenario:
Take this code:
-module (so).
-export ( [foo/0] ).
bar () ->
receive
die -> ok;
Msg -> ...
3
votes
2answers
176 views
Understanding the return value of spawn
I'm getting started with Erlang, and could use a little help understanding the different results when applying the PID returned from spawn/3 to the process_info/1 method.
Given this simple code where ...
3
votes
1answer
122 views
Using _exit() or exit() after spawn()?
As wikipedia states here : "Files that are open when a spawn call is made remain open in the child process". (quite similar to exec())
OK, OS has kept some files opened & ready for our newly born ...
2
votes
2answers
152 views
coffee script cakefile task not finishing
I have the following cakefile task to run selenium tests which runs successfully and gets to the end of the tests but doesn't exit.
muffin = require 'muffin'
wrench = require 'wrench'
http = ...
2
votes
1answer
57 views
How can I use callback when output was printed to stdout in ruby
I am writing scripts for watching servers status.
I can write the code in javascript, but I have to write it in ruby.
In javascript,it can be done using node.js like this.
var iostat = ...
2
votes
2answers
103 views
How do I obtain the PID of a spawned java process
I am writing several java programs and will need to kill off/clean up in a seperate JVM after I am done with whatever I wanted to do. For this, I will need to get the PID of the java process which I ...
2
votes
3answers
205 views
How to rewrite my R code for multicore processing?
I have R code that I need to get to A "parallelization" stage. Im new at this so please forgive me if I use the wrong terms. I have a process that just has to chug through individual by individual ...
2
votes
1answer
77 views
How to use sig*set functions in Linux?
I am trying to convert a call to spawnp to fork-exec.
But in the code I am working on, they are using the inheritance data structure to pass on some signal settings to the child. These are as follows:
...
2
votes
2answers
164 views
Erlang spawn problems
I am having problem with 'spawn' in erlang, it seems processes just die after awhile. Here's the simple code:
-module(simple).
-export([server/1, client/1, owner/1, spawn_n/2, start/1, main/1]).
...
2
votes
1answer
403 views
Too many open files when using NodeJS child_processes.spawn to run scripts
Scenario:
Using a master script to spawn a variable number of child processes a variable number of times in order to perform load testing against a server.
The master script initially spawns all the ...
2
votes
2answers
183 views
Setting fork and spawn in a maven plugin
We're converting a buildfile from ant to a maven plugin. We're trying to start/stop a database (hsqldb) in a maven plugin.
We succeeded to start the database. But we think that the plugin stops the ...
2
votes
1answer
2k views
Error when spawning child process in node.js
I'm trying to get a little ffmpeg converter-service up and running, made pretty good progress so far. But when it comes to spawning the actual ffmpeg process for conversion, i'm hitting a brick wall.
...
2
votes
2answers
900 views
Python: spawn or thread for long running background process?
I am planning to make a long running background process with Python but I am still unsure whether to use os.spawnle or thread. I've only read about it therefore I have not much experience with either ...
2
votes
1answer
293 views
POSIX_SPAWN with Java?
ProcessBuilder.start and Runtime.exec seem to use fork() on *NIX system, which seems to allocate the child process the same amount of memory as the parent process (see e.g.
this question ). This can ...
2
votes
2answers
118 views
Cryptic Erlang Errors
Okay so I started learning erlang recently but am baffled by the errors it keeps returning. I made a bunch of changes but I keep getting errors. The syntax is correct as far as I can tell but clearly ...
2
votes
4answers
563 views
Spawning an interactive process
How can a Java application spawn a new interactive application (e.g. an command line editor) from Java/Scala?
When I use Runtime.getRuntime().exec("vim test"), I would only get a Process instance, ...
2
votes
3answers
600 views
Erlang: How to view output of io:format/2 calls in processes spawned on remote nodes
I am working on a decentralized Erlang application. I am currently working on a single PC and creating multiple nodes by initializing erl with the -sname flag.
When I spawn a process using spawn/4 on ...
2
votes
3answers
484 views
Spawn remote process w/o common file system
(nodeA@foo.hyd.com)8> spawn(nodeA@bar.del.com, tut, test, [hello, 5]).
I want to spawn a process on bar.del.com which has no file system access to foo.hyd.com (from where I am spawning the ...
1
vote
1answer
170 views
Python: Spawn sudo process (in new terminal), wait until completed
Edit: my final code goes something like this:
#WARNING: all " in command need to be escaped: \\"
def spawnInNewTerminal(command):
#creates lock file
lock = open(lockPath, 'w')
...
1
vote
2answers
87 views
Using the spawn command inside of IDL
I'm very new to IDL (trying to do a POC for someone using it) and I am trying to run an external command. The line of code I have added is this:
spawn, 'C:\Program ...
1
vote
1answer
116 views
using CreateProcess to to play media in hidden window
i just developed a tiny little game in textmode c++, what i actually wanted to do is that when the game starts it should spawn a media player in hidden mode and play the mp3 file, also i want to close ...
1
vote
1answer
98 views
Disown children from spawn process
I have a C application that spawns children using fork/exec. My spawn-process runs non-stop and it creates a log file using a unix pipe. Every 24 hours I want to backup the logs. For this I'm using a ...
1
vote
2answers
454 views
How do I spawn a separate python process?
I need to spawn a separate python process that runs a sub script.
For example:
main.py runs and prints some output to the console. It then spawns sub.py which starts a new process. Once main.py has ...
1
vote
0answers
247 views
unable to spawn git no such file or directory on a specific fork on github
The problem is with this fork/repo :
https://github.com/RubenWillems/CCNet
I can get other forks on the same laptop, but not this one.
trying with ssh gives the same problem.
I'm suspecting a ...
1
vote
1answer
505 views
could not able to spawn(ssh) using expect
$expect filename.exp user pwd ip
I got the error
could not execute "ssh -l user ip": no such file or directory
The contents of filename.exp are this:
#!/opt/sfw/bin/expect -D
set OMC_Usr ...
1
vote
1answer
132 views
Storing spawn information for 2d platformer/scroller
I'm looking for some idea's how best to store spawn information for a side scroller. The game I'm writing is very similar to Super Mario Bros. What I'm trying to implement is as you move through a ...
1
vote
1answer
137 views
Right way to create [self]respawning app in python
I am using jabber bot written in python to log some MUC talks. Sometimes it drops on some network or XMPP problems. In this case I have to start it again by myself. The goal is to make it ...
1
vote
5answers
170 views
How do I check if a program has already been executed during the current login session? (Windows)
In an application I am developing (in C), a loader app must first be run before the main application is executed. I have made it so the main app runs the loader app as a child when it is launched in ...
1
vote
1answer
547 views
spawning process on erlang cluster
If I spawn a new process on a busy node in an erlang cluster and other nodes are idle will the process automatically be spawned on one of the free nodes?
Update: I found another question similar to ...
1
vote
2answers
514 views
Spawned child exits with state = 127
I use posix_spawnp to execute different processes and I check the status (with waitpid) to make sure the child was created properly
int iRet = posix_spawnp(&iPID, zPath, NULL, NULL, argv, ...
0
votes
2answers
29 views
Rails concurrent background processes
I need to access and pull data from a number of API's over the the course of the a number of days. This is streaming data so the process will be running all the time. Each process will pulling in data ...
0
votes
2answers
74 views
Erlang: When is it logical to spawn a new process? When not?
If we have really heavy-processes system where process spawning is made for some kind of distribution of load - that's clear.
If we are talking about web-server : it's a good idea to spawn a new ...
0
votes
0answers
20 views
Random spawning in an open world environment
My Unity3D game is a boat game and takes place on open water.
The player must collect objects floating in the water while avoiding enemy craft. What I can't figure out is how to randomly spawn ...
0
votes
0answers
47 views
Web workers not spawning sub workers in firefox 10
I've been trying to use web workers in Firefox 10. The example on the Mozilla site computes Fibonacci numbers (in this case, the 5th Fibonacci number - 5):
...
0
votes
0answers
34 views
IDL spawn not recognising path variables
I'm currently using the SPAWN command to attempt to execute a unix command. If I were simply executing it in the terminal, I would write the following (which works, by the way!):
fslascii2img ...
0
votes
0answers
25 views
IIS PHP Long running script times out on SQL and spawns new process
We are getting very strange behaviour from a report we are running in PHP on an IIS server using a MySQL database, the report is very large and runs a SQL statements which takes a long time to run, we ...
0
votes
2answers
59 views
supervising child process of restarted process
I have a structure like this
-------------
|Supervisor |
-------------
|
-------------
| Child1 |
-------------
|
-------------
| Child2 |
-------------
In this structure, child1 ...
0
votes
1answer
93 views
Spawn gem on heroku - “PGError: server closed the connection unexpectedly”
I'm using the Spawn gem in a rails 3 app - it's the rails3-adapted fork at https://github.com/rfc2822/spawn
My app is deployed on heroku, and when i tried to spawn i get this failure:
app[web.1]: ...
0
votes
2answers
66 views
dynamically calculate number of processes to be spawned
I have a list of about 15 years in the year_queue, I need to spawn one process for each year. But depending on which server I am running the code, the number of processors vary. How do I dynamically ...
0
votes
0answers
44 views
Are Process::detach and Process::wait mutually exclusive (Ruby)?
I'm refactoring a bit of concurrent processing in my Ruby on Rails server (running on Linux) to use Spawn. Spawn::fork_it documentation claims that forked processes can still be waited on after being ...
0
votes
1answer
86 views
How to switch terminal to new child process of process launched with NSTask?
I made a pseudo terminal with method described here: http://lists.apple.com/archives/student-dev/2005/Mar/msg00019.html
The terminal itself worked well. Anyway the problem is terminal cannot being ...
0
votes
2answers
123 views
Expect/TCL: pass commands to specific proc/spawn IDs
I am trying to write an expect script that will do the following..
open up 13 terminal windows (gnome-terminal, xterm etc)
each window connects to a terminal server via ssh (ssh InReach@10.1.6.254)
...