diff options
author | deischen <deischen@FreeBSD.org> | 2001-04-18 12:42:11 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2001-04-18 12:42:11 +0000 |
commit | 5e6e0f0b7bab31026f3cecd805e54e5d6d7bf524 (patch) | |
tree | 393f0f71e1d636e7f35a44f507a68ed400411934 /lib/libkse | |
parent | 9b1e997b4c3f3fe3b844aa1d7d10c04ec3673c36 (diff) | |
download | FreeBSD-src-5e6e0f0b7bab31026f3cecd805e54e5d6d7bf524.zip FreeBSD-src-5e6e0f0b7bab31026f3cecd805e54e5d6d7bf524.tar.gz |
Typo; fix open() so that it is not a cancellation point when called
from libc.
Diffstat (limited to 'lib/libkse')
-rw-r--r-- | lib/libkse/thread/thr_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_open.c b/lib/libkse/thread/thr_open.c index 9ce28a9..380761b 100644 --- a/lib/libkse/thread/thr_open.c +++ b/lib/libkse/thread/thr_open.c @@ -40,7 +40,7 @@ #include <pthread.h> #include "pthread_private.h" -__weak_reference(_open, open); +__weak_reference(__open, open); int _open(const char *path, int flags,...) |