diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-06-15 00:07:41 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-06-15 00:07:41 +0000 |
commit | b4a06a2741e75d6207a667a5e3a5d049f0bb0c4f (patch) | |
tree | 942f6f10743aedac513c569a7628c6a9d8abe980 /lib/libpthread/uthread/pthread_private.h | |
parent | 2f5d3571146c5577b8f5205f4e7b1cc6bf5795e1 (diff) |
Remove pthread_atfork(). It was only part of draft 10 for a little while and was removed before stddization.
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index ef7b7e838e2..748485bc454 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.15 1999/06/09 07:06:54 d Exp $ + * $OpenBSD: pthread_private.h,v 1.16 1999/06/15 00:07:39 d Exp $ * */ @@ -301,10 +301,6 @@ struct pthread_attr { #define PTHREAD_MIN_PRIORITY 0 #define _POSIX_THREAD_ATTR_STACKSIZE -#define PTHREAD_ATFORK_PREPARE 0 -#define PTHREAD_ATFORK_PARENT 1 -#define PTHREAD_ATFORK_CHILD 2 - /* * Clock resolution in nanoseconds. */ @@ -784,7 +780,6 @@ pthread_addr_t _thread_gc(pthread_addr_t); 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 *); |