Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
583 views

Is there a way to make sure a background process spawned by my program is killed when my process terminates?

Basically the child process runs indefinitely until killed in the background, and I want to clean it up when my program terminates for any reason, i.e. via the Taskmanager. Currently I have a while ...
5
votes
4answers
432 views

Python: How to determine subprocess children have all finished running

I am trying to detect when an installation program finishes executing from within a Python script. Specifically, the application is the Oracle 10gR2 Database. Currently I am using the subprocess ...
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 ...
3
votes
5answers
197 views

node.js process per match

This is the sort of the same question as before: node.js child processes I'm asking about whether or not I should use a child process per match for my node.js game. But I realized that previously I ...
3
votes
3answers
161 views

Writing to file descriptor

In the following snippet i am redirecting the output of the ls command to input of wc -l which works perfectly .Now i also want to redirect the output of ls command to a file named "beejoutput.txt" ...
3
votes
1answer
325 views

Writing to child process file descriptor

I have a program "Sample" which takes input both from stdin and a non-standard file descriptor (3 or 4) as shown below int pfds[2]; pipe(pfds); printf("%s","\nEnter input for stdin"); read(0, pO, ...
3
votes
2answers
2k views

Using SSH over Node.js

I'm trying to run a ssh child process in node.js and control it through my program. My code: var util = require('util'); var spawn = require('child_process').spawn; var ssh = spawn('ssh', ...
3
votes
3answers
769 views

How does one automatically attach a debugger to a process at process start on OS X?

I have a process that spawns a helper process. Sometimes I need to debug start-up failures in the second process. On Windows, I would use Image File Execution Options, or ntsd -o. However, I have ...
3
votes
1answer
1k views

Can Visual Studio be made to debug child processes like WinDBG?

This is similar to this question, but I wanted to flesh it out a bit. (I'm new here, if I should instead do a "bump" answer on the previous question instead, please let me know.) In WinDBG, I can ...
2
votes
0answers
34 views

java Process' inputStream stuck

Here's my scenario: process A spawns child process B and spins threads to drain B's outputs. process B spawns daemon process C and drains its outputs, too. process B finishes, daemon process still ...
2
votes
1answer
58 views

Do I have to close inherited handle later owned by child process?

Microsoft played safe here. In their article, "Creating a Child Process with Redirected Input and Output", they are saying: The remaining open handles are cleaned up when this process terminates. ...
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
1answer
104 views

PyUnit with child processes

In some Python code, I fork and do some processing in a child process while the parent waits for it to exit. It doesn't exec after the fork. I'm having a problem testing this code in PyUnit, because ...
2
votes
1answer
624 views

Child process stops when Thread.sleep() is called (in Java under Windows)

I have a Java application that launches an external process (Internet Explorer) using ProcessBuilder. Strangely enough, this child process freezes when the parent Java thread calls Thread.sleep. It ...
2
votes
3answers
10k views

How can I make Perl wait for child processes started in the background with system()?

I have some Perl code that executes a shell script for multiple parameters, to simplify, I'll just assume that I have code that looks like this: for $p (@a){ system("/path/to/file.sh $p&"); } ...
1
vote
0answers
68 views

NodeJS Child Node Process

I am trying to fork a child process that will go out a load data from a 3rd party api into a mongodb instance. When I try to connect to mongodb inside the child process I get Error: connect ...
1
vote
2answers
193 views

node.js child processes

I'm trying to figure out whether or not this would be a decent usecase for node.js child processes: I have a multiple player game where people are engaged into 1v1 matches. Should I use a child ...
1
vote
1answer
42 views

Find all child processes of my own .NET process / find out if a given process is a child of my own?

I have a .NET class library that spins up a secondary process which is kept running until I dispose of the object. Due to some occurances of the program lingering in memory, I've decided to add an ...
1
vote
4answers
138 views

How to implement a shared buffer?

I've got one program which creates 3 worker programs. The preferable method of communication in my situation would be through a memory buffer which all four programs may access. Is there a way to ...
1
vote
1answer
88 views

Why can't I write to a child process's socket during a SIGQUIT?

I have a master process that communicates with children processes via UNIX sockets. I am unable to write to the children's sockets when the master process receives a SIGQUIT. I would like the child ...
1
vote
2answers
225 views

How to prevent console from being displayed when using VLC's dummy interface

I'm trying to launch VLC in "dummy" mode from a Node.js server script, however using child_process.spawn('vlc',['-I dummy']) produces a new console window for VLC's output when using Windows. Is there ...
1
vote
1answer
88 views

Waiting for input from a file descriptor

I am redirecting the file descriptors for stdin and stdout in the child process as follows. Now i want the child process to wait until the data is available at the input descriptor. Currently if data ...
1
vote
2answers
320 views

Redirecting a child process' stdout and stderr to two named pipes (then reading back from them)

I'm working on an application that popen()s another process, whose output - both stderr and stderr - needs to be redirected to two named pipes, also created by the application. Then I need to read ...
1
vote
3answers
734 views

Multiple child process + reading from a stream

referring to my last question (http://stackoverflow.com/questions/876605/multiple-child-process), i am now trying to make an external sorting implementation using multiple child process. ... fp = ...
0
votes
2answers
25 views

Scoping to ensure that Process.Exited is received

I want my child process to tidy itself up if its parent exits. Currently I'm hanging on the Process.Exited method: var parent = Process.GetProcessById(ParentPID); parent.EnableRaisingEvents = true; ...
0
votes
3answers
56 views

How to wait for a process to terminate (and also wait for the corresponding child processes) in PHP?

I have a program that normally run till it terminates, but under some situations, it created two children process, and the main process then exits. The children processes will be still running after ...
0
votes
3answers
212 views

How do you close a Qt child process and get the child process to execute cleanup code?

I am starting a process in Linux/Qt and then starting some child processes using QProcess. Then eventually I want to close the child processes gracefully (aka execute some clean up code). The child ...
0
votes
5answers
153 views

Kill Child-Process on end

I have a C#-Application, which starts some child-Processes and redirect their Standart-Input and Output. If i close the application on the normal way all child processes will be destroyed, but if the ...
0
votes
1answer
137 views

Detach command from current shell

I have a nodejs server that executes commands through child_process.exec. One such command restarts the node instance (and a couple of other things). The script does something like this: kill node ...
0
votes
1answer
52 views

Node.js Piping-how to write?

I need to figure out how I can give exec permissions to write. var exec = require('child_process').exec; exec('ffmpeg -i file.ogv -f mp4 file.mp4', function(err, stdout, stderr){ }); // ffmpeg ...
0
votes
0answers
35 views

trouble creating separate keys for different child processes, any solutions?

I am trying to create different keys for the child processes in my program, meaning that I have for example a parent process creating a number of n process(n is gotten from the command line) and I ...
0
votes
3answers
291 views

Redirecting input and output of a child process in C

I want to write a c program in which i create multiple child processes and redirect their inputs and outputs to different file descriptors .I googled a lot but couldn't find relevant results. Please ...
0
votes
1answer
236 views

Debugging child processes- GDB/DDD

My project is to implement a simple shell program with background processing by way of ending an arglist with &, as in most UNIX shells. My problem is how to debug the shell in GDB when ...
0
votes
1answer
85 views

Keeping track children from old runs of a script

I have a Perl script that spawns some children. They all take quite a while to run, creating directories and files along the way. I often notice things I'd like to change before the children die of ...
0
votes
3answers
606 views

Java, wait for child process to exit

Using Java's ProcessBuilder I am creating a group of child processes. I can use the waitFor() method from the resulting Process object to wait for that particular child to exit. Is it possible to ...
0
votes
2answers
157 views

Another benefit of having Lighttpd in front of Apache

I have read in a site that another benefit of having Lighttpd in front of Apache is lower number of child processes. Lighttpd will handle keep-alive and client requests while child processes of Apache ...
0
votes
3answers
839 views

Creating a child process on Unix systems?

I'm trying to create a child process in another process. I am writing both the programs in C language. First I write a dummy process which will be the child process. What it is doing is only to write ...
0
votes
4answers
354 views

Problem with Process.Start() method

I have a child.exe which takes command line arguments. I need to start that child.exe from another parent.exe application and need to pass different command line arguments to that child.exe. I tried ...
0
votes
3answers
4k views

Multiple child process

can someone help me about how to create multiple child processes which have the same parent in order to do "some" part of particular job? for example, an external sorting algorithm which is applied ...