The forking tag has no wiki summary.
0
votes
1answer
43 views
git cannot allocate memory - git svn rebase
I cannot run git svn rebase in my repository as I am getting:
Can't fork: Cannot allocate memory at /usr/share/perl5/vendor_perl/Git.pm line 1262
The output of free indicates I have plenty of free ...
6
votes
2answers
77 views
Git branch for instances of a website?
I'm working in a couple of websites, both websites needs almost the same code except for some changes in images and css, or settings.
I'm just finished to read the chapter of branchs of Pro Git book ...
6
votes
3answers
2k views
How do I fork a process that doesn't die when shell exits?
If I run emacs from the shell:
$ emacs foo &
and then kill that shell, emacs dies.
How can I run a command so that it will not die when the shell dies?
I found references to nohup, but that ...
3
votes
1answer
885 views
Linux / Perl - What happens when a process is forked?
I've read about fork and from what I understand, the process is cloned but which process? The script itself or the process that launched the script?
For example:
I'm running rTorrent on my machine ...
0
votes
1answer
395 views
Any way to simulate Process.fork() on Windows?
I need to use a library that seems to be making the assumption that Process.fork() is available.
On Windows it is not.
I tried installing Cygwin with the idea that it might simulate this.
Didn't ...
5
votes
3answers
1k views
NetBSD, OpenBSD, *BSD and FreeBSD compared
I recall reading a comparison of NetBSD and FreeBSD a few years back, and in 2000 (okay many) it looked like NetBSD forked processes better, while FreeBSD threaded better, and so, for Apache 1 NetBSD ...