From 9080cc153cc2b09881c3245becbd68534db18d7c Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 17 Apr 2011 16:53:54 -0400 Subject: clean up handling of thread/nothread mode, locking --- src/process/fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process') 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; -- cgit v1.2.1