Tagged Questions

The fork() function is the POSIX way of creating a new process by duplicating the calling process.

learn more… | top users | synonyms

39
votes
3answers
834 views

Why C-forkbombs don't work like bash ones?

If I run the classical bash forkbomb: :(){ :&:&};: my system hangs after a few seconds. I tried to write a forkbomb in C, here is the code: #include <unistd.h> int main( ) { ...
36
votes
12answers
15k views

How to make child process die after parent exits?

Suppose I have a process which spawns exactly one child process. Now when the parent process exits for whatever reason (normally or abnormally, by kill, ^C, assert failure or anything else) I want the ...
19
votes
3answers
7k views

Java - C-Like Fork?

Is it possible to do a "C like" fork in java, using an new independent jvm process ? How?
17
votes
5answers
7k views

exec and fork()

What are the differences between fork() and exec()?
17
votes
10answers
2k views

What is the purpose of fork()?

In many programs and man pages of Linux, I have seen code using fork(). Why do we need to use fork() and what is its purpose?
13
votes
3answers
254 views

Does anyone here fork themself?

I use git all the time for my solo missions but I tend to just work the master. Should I try forking even if it's just me?
13
votes
4answers
499 views

forks in C - exercise

I try to repeat and learn more advanced uses and options when cutting trees with forks in the jungle of C. But foolishly I find an example which should be very easy as I have worked with forks before ...
13
votes
1answer
3k 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 Ruby?
11
votes
2answers
188 views

HTTP Uploads with Resource Forks

I'm building a PHP based upload service for some of our clients. I am using SWFUpload so that I can view the progress of a file as it uploads. I've got it pretty much built, but am running into one ...
11
votes
4answers
536 views

Is fork (supposed to be) safe from signal handlers in a threaded program?

I'm really uncertain about the requirements POSIX places on the safety of fork in the presence of threads and signals. fork is listed as one of the async-signal-safe functions, but if there is a ...
11
votes
2answers
2k views

Python: when to use pty.fork() versus os.fork()

I'm uncertain whether to use pty.fork() or os.fork() when spawning external background processes from my app. (Such as chess engines) I want the spawned processes to die if the parent is killed, as ...
10
votes
3answers
2k views

What do these words mean in Git: Repository, fork, branch, clone, track?

I'm honestly not clear on the semantics here. They're all about copies/variants of a code+history unit, but past that I'm not sure I could say. Is this logical structure explained somewhere?
10
votes
7answers
5k views

What's the best way to duplicate fork() in windows?

How do I implement some logic that will allow me to duplicate the functionality on windows that I have on linux with fork() using python? I'm specifically trying to execute a method on the SAPI Com ...
9
votes
2answers
441 views

Creating GitHub repository with only a subset of a local repository's history

The background: I'm moving closer to open sourcing a personal research code I've been working on for more than two years. It started life as an SVN repository, but I moved to Git about a year ago, and ...
9
votes
3answers
1k views

Fair comparison of fork() Vs Thread [closed]

I was having a discussion about the relative cost of fork() Vs thread() for parallelization of a task. We understand the basic differences between processes Vs Thread Thread: Easy to communicate ...
9
votes
2answers
938 views

Using Unix Process Controll Methods in Ruby

Ryan Tomayko touched off quite a fire storm with this post about using Unix process control commands. We should be doing more of this. A lot more of this. I'm talking about fork(2), execve(2), ...
9
votes
8answers
4k views

What is the closest thing windows has to fork()?

I guess the question says it all. I want to fork on windows. What is the most similar operation and how do I use it.
8
votes
4answers
292 views

What Happens When I Call fork() in Unix?

I've tried to look this up, but I'm struggling a bit to understand the relation between the Parent Process and the Child Process immediately after I call fork(). Are they completely separate ...
8
votes
5answers
491 views

Git fork is git clone?

I keep hearing people say they're forking code in git. Git "fork" sounds suspiciously like git "clone" plus some (meaningless) psychological willingness to forgo future merges. There is no fork ...
8
votes
1answer
305 views

Python fork(): passing data from child to parent

I have a main Python process, and a bunch or workers created by the main process using os.fork(). I need to pass large and fairly involved data structures from the workers back to the main process. ...
8
votes
4answers
638 views

Start background process/daemon from CGI script

I'm trying to launch a background process from a CGI scripts. Basically, when a form is submitted the CGI script will indicate to the user that his or her request is being processed, while the ...
8
votes
2answers
702 views

ptrace'ing of parent process

Can child process use the ptrace system call to trace its parent? Os is linux 2.6 Thanks. upd1: I want to trace process1 from "itself". It is impossible, so I do fork and try to do ...
8
votes
1answer
2k views

How's Python Multiprocessing Implemented on Windows?

Given the absence of a Windows fork() call, how's the multiprocessing package in Python 2.6 implemented under Windows? On top of Win32 threads or some sort of fake fork or just compatibility on top ...
8
votes
3answers
3k views

Avoiding a fork()/SIGCHLD race condition

Please consider the following fork()/SIGCHLD pseudo-code. // main program excerpt for (;;) { if ( is_time_to_make_babies ) { pid = fork(); if (pid == -1) { /* ...
8
votes
4answers
2k views

How do you share data between a parent and forked child process in Python?

I'm pretty sure one would do this using the os.plock(op) function, but I have no idea how. Also, if there's a better way, I'd be grateful to find out. Code snippets are very welcome. Thanks!
8
votes
2answers
914 views

Forking subprocesses in Perl unit tests stops prove; Test::Harness exiting

I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background processes ...
7
votes
4answers
111 views

Who executes first after fork(): parent or the child?

I know that it can be either of these. But I always see that the child executes first on my UNIX terminal. Also, why don't the parent and child execute in parallel. They seem to be executing serially. ...
7
votes
7answers
279 views

Is it safe to fork from within a thread?

Let me explain: I have already been developing an application on Linux which forks and execs an external binary and waits for it to finish. Results are communicated by unique to the fork + process shm ...
7
votes
2answers
178 views

How do zombies harm?

From perlipc/Signals: eval { local $SIG{ALRM} = sub { die "alarm clock restart" }; alarm 10; flock(FH, 2); # blocking write lock alarm 0; }; if ($@ and $@ !~ /alarm clock restart/) { die } ...
7
votes
4answers
154 views

Why is the output of my forking program different when I pipe its output?

I was looking at some simple code on fork, and decided to try it out for myself. I compiled and then ran it from inside Emacs, and got a different output to that output produced from running it in ...
7
votes
2answers
201 views

Is it safe to thread after forking?

I've learned that you should usually stick with either forking or threading to avoid running into very strange and extremely hard-to-debug problems, so until now I always did exactly that. My problem ...
7
votes
5answers
245 views

In a process using lots of memory, how can I spawn a shell without a memory-hungry fork()?

On an embedded platform (with no swap partition), I have an application whose main process occupies most of the available physical memory. The problem is that I want to launch an external shell ...
7
votes
3answers
1k views

printf anomaly after “fork()”

OS: Linux, Language: pure C I'm moving forward in learning C progpramming in general, and C programming under UNIX in a special case :D So, I detected a strange (as for me) behaviour of the printf() ...
7
votes
2answers
2k views

what is difference between fork and thread

Can you any one explain me about what is difference between fork and thread ..? Thanks
7
votes
5answers
3k 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?
7
votes
1answer
3k views

how to set close-on-exec by default

I'm implementing a library to run commands. The library is C, on Linux. It currently does a popen() call to run a command and get output. The problem is that the command inherits all currently open ...
7
votes
2answers
783 views

Forking a gem for a Rails project

I've found myself twice in this situation: I install a gem on my system and start using it from my Rails project. Eventually I need to make some changes to that gem. How should I proceed? Ideally I'd ...
7
votes
4answers
4k views

Portable way to pass file descriptor between different processes

On most UNIX systems passing an open file between processes can be easily done for child/parent processes by fork(); however I need to share a fd "after" the child was already forked. I've found some ...
6
votes
7answers
80 views

Why fork() works the way it does?

So, I have used fork and I know what it does. As a beginner I had was quite afraid of terrible (and still I don't understand it fully). The general description that you find online is that it copies ...
6
votes
3answers
115 views

Recreate dead threads after a fork

As you might know, all threads in the application die in a forked process, other than the thread doing the fork. However, I plan to ressurrect those threads in the forked process by calling ...
6
votes
5answers
145 views

Is it possible to fork/exec and guarantee one starts before the other?

Pretty much as the title says. I have a snippet of code that looks like this: pid_t = p; p = fork(); if (p == 0) { childfn(); } else if (p > 0) { parentfn(); } else { // error } I ...
6
votes
4answers
167 views

Simulating Thread with fork()

What's your idea about simulating thread with "fork() function" and a "shared memory" block ... Is it possible ? How much is it reasonable to do this for a program ? ( I mean , Will it work well..?) ...
6
votes
1answer
243 views

Using shared memory with fork()

I already looked at the only similar post I could find, but it wasn't what I was looking for. Basically, I'm trying to run the Odd-Even Sort with forking, so the child runs odds and parent runs the ...
6
votes
1answer
303 views

What is the difference between using _exit() & exit() in a conventional Linux fork-exec?

I've been trying to figure out how the fork-exec mechanism is used inside Linux. Everything was going on according to the plan until some web pages started to confuse me. It is said that a child ...
6
votes
7answers
360 views

How do I disable END blocks in child processes?

I frequently use fork in programs that also have END { ... } blocks: ... END { &some_cleanup_code } ... my $pid = fork(); if (defined($pid) && $pid==0) { &run_child_code; exit ...
6
votes
5answers
1k views

Working of fork() in linux gcc

"fork() creates a new process and the child process starts to execute from the current state of the parent process". This is the thing I know about fork() in LINUX. So, accordingly the following code ...
6
votes
1answer
742 views

Best way to fork SVN project with Git

I have forked an SVN project using Git because I needed to add features that they didn't want. But at the same time, I wanted to be able to continue pulling in features or fixes that they added to ...
6
votes
2answers
3k views

c - fork() and wait()

I need to use the fork() and wait() functions to complete an assignment. We are modelling non-deterministic behaviour and need the program to fork() if there is more than one possible transition. In ...
6
votes
3answers
513 views

Behavior of a pipe after a fork()

When reading about pipes in Advanced Programming in the UNIX Environment, I noticed that after a fork that the parent can close() the read end of a pipe and it doesn't close the read end for the ...
6
votes
1answer
3k views

How is stack size of process on linux related to pthread, fork and exec

guys. I have a question about the stack size of a process on Linux. Is this stack size determined at linkage time and is coded in the ELF file? I wrote a program which print its stack size by ...

1 2 3 4 5 17