Forking is the creation of a new process by duplicating the current one. The **fork()** operation (usually an operating system call) is available from all compliant POSIX environments.

learn more… | top users | synonyms

0
votes
1answer
23 views

PHP forking tool produce zombie process

I am new on PHP forking and I just copy this code sample from PHP.net. Basically I have a tool that monitor a device and save the data into a database. This tool is running in background. here is my ...
1
vote
1answer
43 views

how to pass socket control to child process?

I have written a small Proxy server which listens on the port 25 and does some set of operations. In case of secure SMTP, i fork a process and let the child process take over for this session. The ...
0
votes
0answers
8 views

A Jar program uses a .class file, but the .class file uses jars

I am using a program called TcpCatcher. It is a proxy that lets you modify requests and responses on the fly. You do this by specifying a .class file. However if I try to use a class file that uses ...
0
votes
0answers
8 views

How to fork HTTP requests with TcpCatcher?

TcpCathcer is a proxy that lets you modify http requests and responses on the fly, by supply your own Java class file. Instead, I want to intercept the request, make two requests from my Java file, ...
1
vote
1answer
27 views

Share variable through ruby processes

I'm writing a gem, where I have to fork two processes which are starting two webrick servers. I want to start this servers through a class method from a base class, because there should only be this ...
2
votes
2answers
43 views

Sending signal to certain (grand-…)grandchildren

Is there a nice way to send a SIGUSR to a grandchild directly? E.g. I have some process tree: 0 / \ 1 2 \ 3 and need to send a signal from 0 to 3. I know I could ...
0
votes
0answers
31 views

Ruby process forking / threading - child process lifetime

I main function with a basic loop inside it. I want to fire off a child process for every iteration of the loop (that goes off doing an HTTP request, more on that later). If I am using processes, my ...
0
votes
0answers
6 views

Ruby Forked Process ActiveRecord Connection & Transactions

I'm trying to get tmm1's test-queue gem working on our app to speed up our test suite. Unfortunately it just seems to hang when I try it with the default setup. One thing it mentions is the ability ...
2
votes
1answer
121 views

pcntl runs the same code several times, assistance required

I am using pcntl in order to speed up a quite heave CLI php script, that consists mostly of a class, that is in charge of sending all of the auto-emailing on my application. My goal is as following: ...
1
vote
1answer
41 views

Efficiency of Threading/Forking

So, I was considering using forking or threading to do some simple parralelization. To make sure that it was worth it, I wrote three simple scripts to benchmark sequential vs threading vs forking. I ...
0
votes
0answers
24 views

Restart VNC server with new options on the same display

I'm trying to write a script or program that is indented to be run by a normal user within a VNC session. The script queries the VNC server and some other system features and depending on certain ...
0
votes
0answers
20 views

Explanation about fork() call

#include <stdio.h> #define N 3 int pid[N]; void main() { int i; for(i=0;i<N;i++)pid[i]=0; for(i=0;i<N;i++)pid[i]=fork(); for(i=0;i<N;i++)printf("%d ", pid[i]); } The ...
1
vote
1answer
39 views

netlink_unicast return errno -111 (Connection refused) in daemon mode

I have a Linux Kernel Module using Netlink in order to communicate with a daemon process running in the userspace. During the development phase I have always run the daemon executable like a normal ...
0
votes
3answers
100 views

Child Process Creation through fork() in C

I'm completely new to C and learning about processes. I'm a little confused as to what the code below is actually doing, it's taken from Wikipedia but I've seen it in several books and am unsure as to ...
2
votes
2answers
48 views

how can i call two api's together at same time without waiting for response from first?

I am making a search widget. when i am searching i am taking results from 2 api's one is from yelp and other is from another source. but this process is taking a longer time $dataProvider = ...
0
votes
2answers
67 views

C Programming vfork return value

I have to create a program that: ask for a number create a child process (using vfork) calculate the square root (in the child process) show the square root from the parent process Here is my code ...
0
votes
0answers
31 views

Spawn inside spawn nodejs

I'm new on nodejs, and here is my question. A bit of background: I have two commands I run on my shell. The first one will set some env variables and log me into a new shell. For example: $ cmdpk ...
0
votes
1answer
85 views

SIGPIPE in a simple two process program

I have a simple setup for a fork and pipe that I have used before. But this time around I'm getting a SIGPIPE in my write call. Here's the code int fd[2]; int pid; if (pipe(fd) == -1) { ...
-3
votes
1answer
93 views

Recovering from fork bomb by having a kernel patch allowing to run only recovery process [closed]

WAS: Reading another question on SO that was migrated to SU : http://superuser.com/questions/435690/does-linux-have-any-measures-to-protect-against-fork-bombs, i was thinking of a solution at kernel ...
0
votes
0answers
38 views

WC isn't executing anything

Can anyone tell me what's wrong with this? I'm still a newbie with forking. The computer executes the 1st and 2nd but the 3rd which is wc doesn't work. Need help badly. The terminal returns multiple ...
0
votes
0answers
72 views

Python XML-RPC HTTPS Forking Server gives SSLError

I've been running a Python multi-threaded XML-RPC HTTPS Server using the following example : http://monitordatasink.googlecode.com/svn/trunk/SecureXMLRPCServer.py Instead of OpenSSL M2Crypto version ...
0
votes
3answers
63 views

Third process “wc” won't work

I'm currently having a problem with the third process because it wont work every time when I run the program. And suggestions with the exit() part because is printing multiple child process! Any ...
1
vote
2answers
105 views

std in/out/err redirection in sub process of forked process

I'm writing a basic reverse shell in C: if(-1 == (myShell->pid = fork())) { PipeSet_close(&myShell->pipeSet); return RS_ERROR; } if(myShell->pid == 0) { /* close pipe ends ...
0
votes
1answer
67 views

C - fork()ing - Idle Children

So I need to iterate fork() several times, creating child processes. The child processes are supposed to "do little or not processing" for example; while(1) sleep(1) The parent is then supposed to ...
0
votes
0answers
130 views

Child processes sort input from parent, send output via pipes. Why am I getting duplicate words?

This is probably going to be a fairly complex problem. Here is the situation: I'm trying to write a program that takes two command line arguments: # of children to spawn, and the name of a file ...
0
votes
2answers
110 views

Why are my child processes being waited on by parent without any work being done?

I'm sure it's something fairly simple, but for the life of me I cannot figure out why my child processes are doing no work, getting waited on, then the last one is pausing (like I'm not closing the ...
0
votes
2answers
78 views

Will os.fork() use copy on write or do a full copy of the parent-process in Python?

I would like to load a rather large datastructure into a process and then fork in the hope to reduce total memory consumption. Will os.fork work that way or copy all of the parent process in ...
2
votes
2answers
121 views

PHP forking and processing MySQL database without conflict

I have a MySQL database table that I need to process. It takes about 1 second to process 3 rows (due to CURL connections I need to make for each row). So, I need to fork the PHP script in order to ...
2
votes
1answer
108 views

C, Bash - processes that run bash scripts and work in parallel on the same file

This is what I need: I made a C program, it forks 2 childs: P1, P2 I also made some bash scripts. I need P1 to run script1.sh, and P2 to run script2.sh. At the moment I'm using the function ...
0
votes
1answer
204 views

Any simple/quick way to fork() on Windows (ANSI C) (_beginthread/_beginthreadex/CreateProcess)

Can somebody help me to make this C POSIX code to port it to run under Windows? (no Cygwin, MinGW just Windows native APIs and Visual Studio), tried many things without any luck. #include ...
0
votes
2answers
167 views

Grails forked tomcat execution not working

Grails 2.2.0 I added grails.project.fork.run=true to the Config.groovy file. On the command line, issued: grails run-app My understanding of the fork ability is that the grails system would ...
-1
votes
2answers
27 views

I just forked a Repo and RVM wants to install a new version of Ruby. The repo's Gemfile and Gemspec do not specify a Ruby Version

I just forked a Repo and RVM wants to install a new version of Ruby in order to run it. The repo's Gemfile and Gemspec do not specify a Ruby Version. I know very little about RVM. When I try to go ...
0
votes
1answer
218 views

Download multiple files simultaneously with PHP - Forking, Sockets

I'm using the following code to manage downloads from my site (the files are behind a captcha): http://www.richnetapps.com/php-download-script-with-resume-option/ Trouble is, when a file is being ...
0
votes
1answer
75 views

STDIN seems to be broken after call to “system” invoking mpiexec

This is my first ever post here, so please excuse any formatting issues. I have an interactive program which spawns external processes and monitors their IO. Things work fine until I spawn ...
3
votes
3answers
154 views

How to fork() n child processes doing diferrent functions?

This is my code: for (c = 0; c < PROCESSES; c++) { pid[c] = fork(); switch (pid[c]) { case -1: perror("Faild fork!\n"); break; case 0: ...
1
vote
1answer
149 views

Dancer Under Plackup and Starman; forking leaves defunct starman processes?

As a follow up to my other question here: Forking to Run Code in a Child Process With Perl's Dancer - how do I fork a request running under plackup/starman/dancer without causing the child to be ...
0
votes
2answers
206 views

An event system - like signal / slot in Qt without forking - C++

I would like to know how to design a system that can offer a solid framework to handle signals and the connection between the signal/s and the method/s without writing a really unpleasant cycle that ...
1
vote
4answers
104 views

How to have child processes change the parent's variables?

I declared an array: char * words[1000] = {NULL}; And now I have a series of forked child processes adding words to that array, but they are not affecting the parent program. How can I change that?
0
votes
2answers
61 views

Why doesn't this cause a fork bomb

This program prints 2^3 times hi and exits Isn't it that fork call calls main function recursively? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, ...
1
vote
1answer
147 views

Forking to Run Code in a Child Process With Perl's Dancer

I have a Dancer app in perl that handles get/post requests. One of my example routes is below: post '/handle_data' => sub { # perform some calculations ... # store some data ... ...
1
vote
1answer
106 views

How to properly exit a child process within a thread?

I am trying to handle timeouts within threads. My script has 4 threads, each thread needs to execute commands, and kill the command process if it takes too long. What I am doing is: my $pid; if ...
0
votes
0answers
55 views

how to join forked processes in php

where in I need to fork a process. Then when their task completes, the parent process should go ahead and do some other work. How can this be done? Here's what I have done $sql = "call ...
0
votes
0answers
85 views

Rails on Passenger - producing multiple Rack PIDs for each worker process

I'm running Rails 3.2.7 (Ruby 1.8) on Passenger / Apache (on Ubuntu) and I have observed an issue that concerns me while trying to track down some serious memory bloat. I've been running htop on the ...
0
votes
3answers
275 views

Understanding fork mechanism in Unix

I am trying to figure out the behaviour of parent and child process. Below is my code #include <stdio.h> #include <unistd.h> #include <sys/types.h> int main(void) { int ...
1
vote
2answers
101 views

How to duplicate current process?

What's the easiest way to duplicate the current process, to spawn another instance in Windows? I know Linux has fork(), but all I need is to run main in the same process again, probably using ...
2
votes
1answer
189 views

Perl Module ForkManager not working

My error is as follows Cannot start another process while you are in the child process at /usr/lib/perl5/site_perl/5.8.6/Parallel/ForkManager.pm line 463. The part of my code that is having issues ...
4
votes
1answer
177 views

GTK+ gtk_widget_show_all() taking a long time after fork and exec()

I am developing a GTK+ application for Linux that is launched from another GTK+ application using fork() and then execvp(). What I'm noticing is that the exec()'d application is taking around 10-15 ...
2
votes
1answer
47 views

Fork jQuery to fork one of its built-in components as a plugin?

I want to make my own enhanced spin-off of one of the jQuery "helper" functions as a plugin (deferred.js/$.when() as it happens.) Well actually I've already made it, but completely detached from any ...
1
vote
0answers
106 views

Using PHP as daemon, lots of network activity, crashing

Backgrond: I currently have a daemon written in PHP. I knew PHP wasn't the best solution to this problem when I wrote it, but it's what I had access to at the time and what I'm doing makes PHP more ...
0
votes
2answers
578 views

Celery error: “No module named billiard.forking” - how to diagnose?

I have no idea where to start diagnosing and fixing this: $ bin/django celeryd -l DEBUG -v 3 -------------- celery@lucid32 v3.0.3 (Chiastic Slide) ---- **** ----- --- * *** * -- [Configuration] ...

1 2 3 4