From 5eb0d33ec0f08b123c5c10877d6258d05fa9453a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 12 Mar 2011 21:55:45 -0500 Subject: implement flockfile api, rework stdio locking --- src/thread/pthread_create.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/thread') diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index d829fa26..9b6385f5 100644 --- a/src/thread/pthread_create.c +++ b/src/thread/pthread_create.c @@ -150,6 +150,7 @@ static void init_threads() { struct sigaction sa = { .sa_flags = SA_SIGINFO | SA_RESTART }; libc.lock = __lock; + libc.lockfile = __lockfile; libc.cancelpt = cancelpt; libc.rsyscall = rsyscall; sa.sa_sigaction = cancel_handler; -- cgit v1.2.1