Tagged Questions
0
votes
1answer
16 views
Does fork carry threads along?
Suppose in POSIX semantics, I have a process A, it has two threads, t1 and t2. t1 is the main thread, then, in t2 I call fork to fork process B.
Then does this new process B have t1 and t2 too? Or it ...
1
vote
1answer
51 views
Where does the forked process start from if a call of fork in a thread occurs?
I'm going to write a program in which the main thread creates new thread and then the new thread creates a child process. Since I have a hard time keeping track of the new thread and forked process, ...
0
votes
1answer
76 views
pthread_create b/w fork and exec
I wish to create a thread in a child process before the respective child process changes it's image using exec system call. However, seemingly, the pthread_create call is being overlooked.
...
0
votes
2answers
121 views
C - execvp() interprocess communication
Hi all I am new to C so sorry if I am very lost. I am having trouble with this multi-threaded web server I am trying to create. I am attempting to...
have a thread create a new thread
have that new ...
1
vote
1answer
161 views
Linux shmget() function in c++
I am trying to setup s segment of shared memory to hold an array of strings. As an example this array
string example[] = {"This is", "An Example ", "of strings"};
I then try to call shmget so I ...
1
vote
1answer
229 views
Are all reentrant functions safe to use after fork()ing in a multithreaded(with pthreads) process?
I'm working on a C++ project which employs pthreads for multithreading, but also needs to fork now and then. I've read warnings scattered in the code that memory allocation should never be done after ...
7
votes
3answers
247 views
pthreads: how to assert code is run in a single threaded context
I am writing a C library which needs to fork() during initialization. Therefore, I want to assert() that the application code (which is outside of my control) calls my library initialization code from ...
1
vote
1answer
162 views
pthread mutex without mmap possible?
On linux with copy-on-write forking. When creating pthread interprocess mutex in a parent, will it be effective in the child or it will work so only if I mmap it into shared memory?
2
votes
2answers
90 views
creating pthreads after a fork
I am writing a C program that forks once it accepts a client connection. Once this happens, I want to spawn two threads, but I cannot seem to get this working.
pthread_t t1, t2;
void ...
3
votes
3answers
1k views
When is clone() and fork better than pthreads?
I am beginner in this area.
I have studied fork(), vfork(), clone() and pthreads.
I have noticed that pthread_create() will create a thread, which is less overhead than creating a new process with ...
3
votes
2answers
464 views
C++ : fork/exec or pthread?
I'm writing a program, and once a button is pushed, I have to execute a server process (that will stop only if I decide to kill him).
To execute this process, I decided to use fork/execv mechanism :
...
1
vote
2answers
161 views
How to convert OpenMP sections to fork()
I am new to pthreads and would like to ask how to express something like:
while(imhappy())
{
#pragma omp sections
{
#pragma omp section
{
dothis();
}
#pragma omp section
{
dothat();
...
1
vote
1answer
132 views
how do I write my own production web server?
I am making a unix ssl server/client. So far I have implemented FD_SET with select to handle all connections concurrently in one master server process. However due to __FD_SETSIZE the number of ...
3
votes
4answers
376 views
What happens to other threads when one thread forks()?
In C++ using pthreads, what happens to your other threads if one of your threads calls fork?
It appears that the threads do not follow. In my case, I am trying to create a daemon and I use fork() ...
1
vote
1answer
389 views
How to handle a fork error for a multithreaded process?
I am working on a multithreaded process that forks to execute another process. Sometimes, the fork may error if the execution file does not exist. Since this process has multiple threads running prior ...
4
votes
4answers
3k views
fork() in C program
This is a question from recent GATE entrance exam.
A process executes the code
fork();
fork();
fork();
The total number of child processes created is
(A) 3. (B) 4. (C) 7. (D) 8.
My ...
1
vote
2answers
513 views
Replace fork() with pthread_create()
Can someone show me how to replace this simple code to use pthread_create instead of fork()?
Is it possible?in particular, I've some problems with the struct *ex passed into main().
how have I to ...
0
votes
0answers
101 views
how can write code to download in a parallel way?
I would like to obtain a parallel download of a file, for example, if the file size of 54 kb, I would like to blocks of 10kb was downloaded the file's contents.
In addition, I have no more than 5 ...
3
votes
3answers
935 views
Calling system() from multithreaded program
We are working on a multithreaded memory-consuming application written in C++.
We have to execute lots of shellscript/linux commands (and get the return code).
After reading that article we clearly ...
0
votes
2answers
34 views
trouble with memory
I have very long code, with multiple processes, and somewhere in the program while it is running I get a message like "invalid next size (fast)" and some numbers that make no sense.
I can't get gdb ...
1
vote
1answer
124 views
forkall not working as intended
I am trying to write a code that checkpoints multithreaded applications. Since fork function doesn't work with such applications, I am working on solaris which has forkall function to achieve that.
...
0
votes
1answer
1k views
Porting an application with fork() to pthread_create()
I am porting a linux application to the iphone and I would like to know how much re-writing I have to do to make it a multi-threaded application rather than a multi-process application.
Also, if I ...
3
votes
1answer
389 views
FastCGI fork in c
I'm currently developing highload project, i need to use C/FastCGI/nginx combination.
The problem is, i need my FastCGI application to run in threads/processes.
I know two ways to do that:
1) ...
1
vote
3answers
220 views
c / What behaviour would you expect, best practice, signal, thread, process?
My source looks like that:
keep_going = 1;
struct sigaction action;
memset(&action, '\0', sizeof(action));
action.sa_sigaction = &signal_handler;
if (sigaction(SIGUSR1, &action, NULL) ...
4
votes
2answers
2k views
c / interrupted system call / fork vs. thread
I discovered an issue with thread implementation, that is strange to me. Maybe some of you can explain it to me, would be great.
I am working on something like a proxy, a program (running on ...
4
votes
3answers
5k views
Difference between pthread and fork on gnu/Linux
What is the basic difference between a pthread and fork w.r.t. linux in terms of
implementation differences and how the scheduling varies (does it vary ?)
I ran strace on two similar programs , one ...
3
votes
1answer
210 views
pthread_atfork locking idiom broken?
The standard idiom for pthread_atfork usage is supposed to be to obtain all locks in the pre-fork handler, and release them in both the parent and child handlers. However as far as I can tell, this is ...
1
vote
1answer
307 views
Problem forking processes and creating threads
My program is supposed to fork three processes. Each of these processes will create three threads and fork two additional processes. These two additional processes will create three threads.
Here is ...
0
votes
1answer
83 views
Why does it take longer to call a fork() than it does to call pthread_create()?
I was wondering this, is it because they only need a stack and storage for registers so they are cheap to create ?
Thanks a lot :)
1
vote
3answers
236 views
backgrounding a threaded application with fork()
So I have an application which uses threads. Now when the program first starts up, I want it to go through setting up database connections and whatnot before it backgrounds itself so that ...
-5
votes
1answer
111 views
I want to know from the following question that whether the fork returns either 0 or 1, and what can be the internal function of fork()? [closed]
Consider the following code which uses fork():
int main()
{
int i = 0;
if (fork())
{
int j;
for (j = 0;j < 10; j++) { puts( "x" ); }
exit();
}
else {
...
12
votes
4answers
901 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 ...
3
votes
3answers
1k views
C - does exec have to immediately follow fork in a multi-threaded process?
Situation:
I have a multithreaded program written in C. If one of the threads forks, the child process is replaced by another using exec() and the parent waits for the child to exit.
Problem:
...
3
votes
2answers
1k views
Fork() on iPhone
Does the the iPhone SDK allow fork() and pipe(), the traditional unix functions? I can't seem to make them work.
Edit
Problem solved. Here, I offer a solution to anybody who encounters problems ...
2
votes
3answers
2k views
pthread and child process data sharing in C
my question is somewhat conceptual, how is parent process' data shared with child process created by a fork() call or with a thread created by pthread_create()
for example, are global variables ...
10
votes
1answer
10k 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 ...