diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-01-18 00:03:36 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-01-18 00:03:36 +0000 |
commit | ed4fdea26bcbd6abe878da863805f86822acf277 (patch) | |
tree | 6a21e1c4bd63c551fe639e10e1b08e77a35cbcba /lib/libpthread/uthread | |
parent | 136a4ee3dab2f69e093af3c9255aa23428cb8183 (diff) |
move private spinlock protos out
Diffstat (limited to 'lib/libpthread/uthread')
-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 |