diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/include/thread_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/include/thread_private.h b/lib/libc/include/thread_private.h index 5fbbf592a41..c5acc4b5e43 100644 --- a/lib/libc/include/thread_private.h +++ b/lib/libc/include/thread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_private.h,v 1.18 2006/02/22 07:16:31 otto Exp $ */ +/* $OpenBSD: thread_private.h,v 1.19 2006/09/26 14:18:28 kurt Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ @@ -90,6 +90,7 @@ extern void *__THREAD_NAME(serv_mutex); #define FD_READ 0x1 #define FD_WRITE 0x2 #define FD_RDWR (FD_READ | FD_WRITE) +#define FD_RDWR_CLOSE (FD_RDWR | 0x4) struct timespec; int _thread_fd_lock(int, int, struct timespec *); |