diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-04-17 16:53:54 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-04-17 16:53:54 -0400 | 
| commit | 9080cc153cc2b09881c3245becbd68534db18d7c (patch) | |
| tree | ddbc5aef325120e000b8e7d852f26322791deb55 /src/process/fork.c | |
| parent | eb0e8fa0b1960cff4bd65ebefc798f70273b0bc9 (diff) | |
| download | musl-9080cc153cc2b09881c3245becbd68534db18d7c.tar.gz | |
clean up handling of thread/nothread mode, locking
Diffstat (limited to 'src/process/fork.c')
| -rw-r--r-- | src/process/fork.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process/fork.c b/src/process/fork.c index 07fb79ed..bcd47c97 100644 --- a/src/process/fork.c +++ b/src/process/fork.c @@ -8,7 +8,7 @@ pid_t fork(void)  	pid_t ret;  	if (libc.fork_handler) libc.fork_handler(-1);  	ret = syscall(SYS_fork); -	if (libc.lock && !ret) { +	if (libc.threaded && !ret) {  		pthread_t self = __pthread_self();  		self->tid = self->pid = syscall(SYS_getpid);  		libc.threads_minus_1 = 0;  | 
