0
votes
1answer
37 views
Run child processes as different user from a long running process
I've got a long running, daemonized Python process that uses subprocess to spawn new child processes when certain events occur. The long running process is started by a user with s …
0
votes
2answers
27 views
Ruby/RoR and many subprocesses
I am trying to build a free web application using ruby/rails It should be able to send sms through online forms of various mobile operators. (like this one (in russian)).
So, I ne …
1
vote
1answer
43 views
Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has died
I have a Perl script that does a fork/exec to start another tool in the background and monitor some file system changes while this other tool is running. This seems to work like ex …
2
votes
1answer
63 views
Create a daemon with double-fork in Ruby
What is the proper way to create a well-behaved Unix or Linux daemon in Ruby?
What is the definition of a well-behaved daemon anyway, and how would one write such a program in Rub …
2
votes
7answers
205 views
fork/chroot equivalent for Windows server application
I have written a small custom web server application in C running on Linux. When the application receives a request it calls fork() and handles the request in a separate process, w …
0
votes
4answers
69 views
How do I fork multiple projects into one repository with git?
I have a 3 projects I'd like to fork. They're all related to each other - changing one will likely require a change to another. Because they're all related, I'd like to create 1 re …
2
votes
3answers
143 views
Forks and Pipes in C UNIX
I'm not sure if I am even barking up the right tree here... but here goes.
I'm trying to pass data from my parent process to all children. It's a simple server program that basica …
0
votes
1answer
42 views
What systems do not support WNOHANG option for waitpid?
I have a library for managing child processes that relies on passing the POSIX WNOHANG option to waitpid to perform a non-blocking wait on a process. It is said that not all system …
6
votes
5answers
182 views
Difference between “system” and “exec” in Linux?
What is the difference between system and exec family commands? Especially i want to know which one of them creates child process to work?
-3
votes
1answer
111 views
Help with C program(gcc) in Linux
Hi... I have a project for my college but unfortunately, I struggle in programming, apart from simple C programs. Anyway, the way I see it, I think the code I need should be around …
0
votes
1answer
30 views
Threads not copied while forking?
I have one application which has several different threads. Then I forked with fork() but found the child process has to recreate those threads. Is that possible to copy the thread …
0
votes
3answers
64 views
Is it possible using Linux’s clone() system call to run multiple applications in the same address space?
If you don't pass the CLONE_VM flag to clone(), then the new process shares memory with the original. Can this be used to make two distinct applications (two main()'s) run in the s …
0
votes
3answers
107 views
How to wait for process child?
I do the usual fork + exec combination:
int sockets [2];
socketpair (AF_LOCAL, SOCK_STREAM, 0, sockets);
int pid = fork ();
if (pid == 0) {
// child
dup2 (sockets[0], STDIN_F …
2
votes
3answers
119 views
Problem forking fork() multiple processes Unix
So I have this function that forks N number of child processes. However it seems to be forking more than specified. Can you tell me what I'm doing wrong?
Thanks
void forkChildren …
0
votes
2answers
172 views
Forking / Multi-Threaded Processes | Bash
Hi all -
I would like to make a section of my code more efficient. I'm thinking of making it fork off into multiple processes and have them execute 50/100 times at once, instead …
