diff options
author | 1999-01-18 00:03:34 +0000 | |
---|---|---|
committer | 1999-01-18 00:03:34 +0000 | |
commit | 1050632c0caf1a57af7dcb4b828c92b992e6a1bb (patch) | |
tree | f1391bdd933fd4d52bb426d46f1e397aa3d12d66 /lib/libpthread/uthread/pthread_private.h | |
parent | typo; nice (diff) | |
download | wireguard-openbsd-1050632c0caf1a57af7dcb4b828c92b992e6a1bb.tar.xz wireguard-openbsd-1050632c0caf1a57af7dcb4b828c92b992e6a1bb.zip |
move private spinlock protos out
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index ff318b3b611..851e1b4b7a0 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -31,7 +31,7 @@ * * Private thread definitions for the uthread kernel. * - * $OpenBSD: pthread_private.h,v 1.11 1999/01/18 00:00:32 d Exp $ + * $OpenBSD: pthread_private.h,v 1.12 1999/01/18 00:03:35 d Exp $ * */ @@ -597,6 +597,8 @@ void _thread_enter_cancellation_point(void); void _thread_leave_cancellation_point(void); void _thread_cancellation_point(void); void _thread_atfork(int); +int _thread_slow_atomic_lock(volatile _spinlock_lock_t *); +int _thread_slow_atomic_is_locked(volatile _spinlock_lock_t *); /* #include <signal.h> */ #ifdef _USER_SIGNAL_H |