diff options
author | 2004-01-15 22:22:11 +0000 | |
---|---|---|
committer | 2004-01-15 22:22:11 +0000 | |
commit | 8fbcace0314c6afd3b92b2c54a7bafdd68e7b724 (patch) | |
tree | db03bb0d16cca8ae0a22c6416b0689c68c569508 /lib/libpthread/uthread/pthread_private.h | |
parent | escape full stops properly to avoid double spaces; (diff) | |
download | wireguard-openbsd-8fbcace0314c6afd3b92b2c54a7bafdd68e7b724.tar.xz wireguard-openbsd-8fbcace0314c6afd3b92b2c54a7bafdd68e7b724.zip |
threaded version of closefrom
pthread_stackseg_np added. Minor bump for these changes occurred
a day or so ago and will not be bumped again
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index 00001a67fed..42ad837b4ee 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_private.h,v 1.50 2003/12/31 22:15:28 brad Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.51 2004/01/15 22:22:11 marc Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -1243,6 +1243,7 @@ void _thread_sys_setbuffer(FILE *, char *, int); #ifdef _UNISTD_H_ char *_thread_sys_ttyname(int); int _thread_sys_close(int); +int _thread_sys_closefrom(int); int _thread_sys_dup(int); int _thread_sys_dup2(int, int); int _thread_sys_exect(const char *, char * const *, char * const *); |