Tagged Questions
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.
14
votes
3answers
480 views
What are the ethics & etiquette of forking someone else's github project to release it as a gem?
I'm doing some spare time coding around CultureGrid. They have a SOLR API to access 1.2m cultural artefacts. I've released a gem to consume their service, but I've got a nice idea about using ...
13
votes
4answers
498 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 ...
7
votes
5answers
4k views
Problem with a Python program using os.pipe and os.fork()
I've recently needed to write a script that performs an os.fork() to split into two processes. The child process becomes a server process and pases data back to the parent process using a pipe created ...
6
votes
2answers
179 views
Is it possible to 'fork a fork' in Github?
I am currently working on a project that is a spinoff (fork) from a framework I have been working on.
This project is intended to be pretty generic, but now I need to fork the codebase again for a ...
6
votes
1answer
334 views
Git submodule pull request work flow
I am curious about some best practices.
There is a git repo that I would like to include as a submodule in my project. I would also like to contribute to this repo and offer pull requests. I have ...
5
votes
1answer
325 views
Forking in NodeJS
I'm a little bit confused as to how to create daemons in NodeJS
I've created daemons in C before that call fork() that continue execution from where the call was made in a child process allowing the ...
5
votes
4answers
492 views
Is better to branch or fork a Mercurial repository?
Assuming you "own" a Mercurial repository is it better to branch or fork the repository when embarking on experimental code?
In my situation I'm a lone developer and about to embark on some ...
5
votes
3answers
308 views
How to exchange binary data between processes in Linux
I need to create an linux application that would do wireless network scanning, put the result in a structure and send it somehow to another, main application that will use the data.
My initial idea ...
5
votes
6answers
527 views
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 ...
4
votes
2answers
25 views
Calling a function in a background thread / process (forking)
I have code that's somewhat like this:
($i=0; $i < 100; $i++)
{
do ($foo[$i]);
}
The above is a time intensive task, and I was hoping to be able to create a function, and call it twice like ...
4
votes
2answers
153 views
Having a private branch of a public repo on Github?
I have a public PHP project in Repo in github (which would contain 1 branch - master) and I wish to have a seperate branch/fork that is private to me (I have paid for private repos in github) I would ...
4
votes
2answers
290 views
Add Github fork to existing repository
I setup an Octopress project following the given instructions (http://octopress.org/docs/setup/) which have you create a Github repository, and create a local repository on your machine. On your local ...
4
votes
1answer
174 views
Is there a way to provide self-hosted web-based forking of Mercurial repos like BitBucket/Kiln?
I'm currently using self-hosted SVN with Trac for a FOSS project, and am slowly moving to Mercurial. I've got HgWeb set up, so I can view the repository and check out over HTTP, but I'd like to be ...
4
votes
2answers
70 views
How can I combine my separate repo as if it started off as a fork?
I have these two github repos, on both of which I'm an admin:
https://github.com/ripper234/osqa
https://github.com/sghael/OSQA
Both were created using git-svn from ... an svn repository, of ...
4
votes
4answers
295 views
Why do daemons fork?
I'm aware some (all?) daemons fork when they're being started. I'm under the impression this is to run the child processes as less privileged users, especially if the daemon is something like a HTTP ...
4
votes
2answers
132 views
Splitting one Git repository into many - branches become forks
I have a project in SVN that I'm migrating to Git. The project consists of a "core" product (under trunk), which is then branched within the same repository and used as a starting point to customize ...
3
votes
2answers
101 views
How to fork my android app?
So I've written my first Android app, ... and want to be able to provide both free and paid versions. I wrote and compiled it in Eclipse on Windows.
I'm wondering if it is possible, and how I would ...
3
votes
1answer
145 views
bitbucket: fork vs clone?
Using Mercurial with a private repository hosted at bitbucket. I need to add some new features to an application that will potentially end up being serious changes. I've been debating between ...
3
votes
1answer
41 views
Forking CodeIgniter on github
I'd like to fork the CodeIgniter repo on github and make some changes to it for my personal use, which I haven't done yet, but I will once the following question is answered :)
If the CodeIgniter ...
3
votes
1answer
254 views
Can I update a forked project, on git, to the original/master copy?
A few weeks ago i forked a public project on GitHub. Today, I wish to try some stuff on it BUT i want to make sure the copy I use is the most recent.
Can I update my fork, first?
And what happens ...
3
votes
1answer
93 views
losing children in a fork
use strict;
use warnings;
use Parallel::ForkManager;
my $log = "/scripts/downloads/test.log";
print "Check the $log file\n" and open(LOG,">$log");
*STDERR = *LOG;
*STDOUT = *LOG;
my ...
3
votes
1answer
267 views
how to run same jar file multiple times by forking new child process every time?
i am trying to write a c++ program.
the program is required to run some jar files, run every jar file two times.
the problem is that the program runs every file just one time correctly.
at the second ...
3
votes
1answer
178 views
Forking Greenlets
Perhaps I'm missing something obvious (and it is a Friday), but is there a way to do the equivalent of an os.fork() on a greenlet? I'm not necessarily looking to fork the process, I'm looking to take ...
3
votes
3answers
348 views
How do I spawn a daemon in uClinux using vfork?
This would be easy with fork(), but I've got no MMU. I've heard that vfork() blocks the parent process until the child exits or executes exec(). How would I accomplish something like this?:
pid_t pid ...
3
votes
2answers
3k views
Maven surefire plugin fork mode
By default maven surefile plugin run tests in isolated (forked) environment. You can override this behavior with following configuration:
<build>
<plugins>
<plugin>
...
3
votes
1answer
595 views
Spawning multiple processes with PHP to proccess data
I have a queue (Amazon SQS) of data that needs to be processed, and I would like to do it with multiple processes (in PHP).
I want the child workers to do something like this (pseduoish code):
...
3
votes
6answers
661 views
Returning data from forked processes
If I do Process.fork do x end how can I know what x returned ? (e.g. true/fase/string) ? (writing to a file/database is not an option...)
2
votes
1answer
54 views
Will child JVM “inherit” max heap size and perm gen size when forked?
If I specify a given max heap size and perm gen size in an exported shell variable i.e. JAVA_OPTS or MAVEN_OPTS and the Maven build forks the JVM, will the child JVM "inherit" or attempt to access the ...
2
votes
2answers
71 views
How to perform some task after render in Rails 3.1
I'm using Impressionist to record page impressions. The database write only takes about 50ms, but I'd really prefer to do it after the page has rendered and been sent to the client.
I've looked into ...
2
votes
1answer
49 views
Debugging multiple forked processes in *nix
Are there any easy ways to debug forked child processes in *nix, without having to sleep them and create new gdb instances, using ps to get the child's pid? Are there any debuggers that do this?
2
votes
3answers
338 views
Do forked child processes use the same semaphore?
Let's say I create a semaphore. If I fork a bunch of child processes, will they all still use that same semaphore?
Also, suppose I create a struct with semaphores inside and forked. Do all the ...
2
votes
4answers
284 views
working of fork in c language [closed]
Thanks to all of you for helping me.
Now I have a problem in understanding the working of fork() system call.
I write a code which is following :
#include<stdio.h>
int main()
{
int a, b;
...
2
votes
3answers
138 views
Application threading in Windows using PHP
I'm making a PHP application that spawns child processes with parameters detailing what work they are supposed to do. More specifically, the child processes will process rows from a large MySQL ...
2
votes
1answer
142 views
Mercurial source control - pros and cons of Forking
I'm customizing BlogEngine.Net to support custom local features (Farsi calendar, RTL theme, etc.)
BlogEngine.Net uses mercurial source control and I am able to create a fork of the project and ...
2
votes
1answer
279 views
fabric run fork
I want to use Fabric.api.run to directly start an application in a remote box. Since the application takes really a long to finish, I wish to be able to fork a child process, such that I don't need to ...
2
votes
2answers
3k views
The difference between fork(), vfork(), exec() and clone()
I was looking to find the difference between these four on Google and I expected there to be a huge amount of information on this, but there really wasn't any solid comparison between the four calls.
...
2
votes
3answers
495 views
Git - Forking without Github
Is the function of "forking" specific to github? or is there a purely git process for creating "copied" child repositories that can pull updates from the parent? If so, how?
EDIT : I must be confused ...
2
votes
5answers
88 views
Time to wait before forking open source software?
I'm working on an application and I needed an API wrapper for it. I noticed that most of the API calls I needed weren't implemented, so I went ahead with adding them in. There are a few bugs that need ...
2
votes
2answers
382 views
Forking on Google Code (or any other SVN hosting)
Sites like github, bitbucket provides an excellent/useful feature of "forking" projects. This allows one to simply fork a project and work on their desired features (before submitting it to the ...
1
vote
1answer
41 views
PHP parent/child timing communication
I am working on an app which will allow me to login to a remote telnet server and monitor statistics. The problem is that the telnet server has a minimum refresh rate of 10 seconds, and the refresh ...
1
vote
1answer
135 views
Regarding background processes using fork() and child processes in my dummy shell
I'm trying to create a simple shell program in C. What I need it to do is provide the user with a prompt in which they can run other local programs. I can do that part fine, using a fork() in which ...
1
vote
2answers
61 views
multiple forks in unix
main() {
fork();
fork();
printf("Hello world\n");
}
In the above program, the parent process spawns a child process. The child process in turn spawns a grandchild process. After ...
1
vote
3answers
116 views
Multiple fork() in switch lead to exponential exec
I have a program which executes multiple programs depending on i. See the following code block:
for(i=0;i<5;i++){
switch(i){
case 0:
...
1
vote
1answer
55 views
Forking a project, how to change header info ?? How goes copyright in merging changes? [closed]
I want to create a fork of a big opensource library/software. My intention is not to go a different rout, or to change fundamentals of the software, but to add functionality I need in projects and ...
1
vote
1answer
43 views
Forking vs Branching in an enterprise context
I'm curious to know what DVCS strategy people use in enterprises.
The Github model is based on forks because in open source projects you have some trust issues and your probably don't want anyone to ...
1
vote
5answers
110 views
How to make sure PHP instance runs in background?
I have a ton of rows in MySQL. I'm going to perform a ping on an ip in each of these rows, so I'd like to split the load. I've made a script that runs a new process for every 100 row in the database. ...
1
vote
2answers
148 views
How to unit test PCNTL forker class in PHP?
I have an abstract PHP class that is responsible for doing process forks and also detaching the current process from terminal and continue as deamon.
I really would like to get tips about how to unit ...
1
vote
2answers
198 views
what will be the PID after fork()?
I am doing 3 consecutive forks in a C program.
1. Is it going to execute in the same order ? ( My guess is yes ).
2. If I do a pgrep myexecutable from shell, would it give the process ids in the same ...
1
vote
1answer
231 views
Mercurial - Merge parent changes into child fork as individual commits?
My desire is to keep my fork up to date with the parent, and ideally record the parent's individual commits + messages, so that I have a full history in the fork, of what changed in the parent.
So ...
1
vote
4answers
2k views
Fork Concept in C#
Since C# supports threading, is there any way to implement fork concept in C#?
Thanks in advance....