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