summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/uthread/pthread_private.h
diff options
context:
space:
mode:
authord <d@openbsd.org>1999-01-08 05:42:18 +0000
committerd <d@openbsd.org>1999-01-08 05:42:18 +0000
commit2a44a51ac12213f3347a42ebee15013b7b6c6d6b (patch)
tree3044524d882a78695d6551be9901d18252d95e61 /lib/libpthread/uthread/pthread_private.h
parentident (diff)
downloadwireguard-openbsd-2a44a51ac12213f3347a42ebee15013b7b6c6d6b.tar.xz
wireguard-openbsd-2a44a51ac12213f3347a42ebee15013b7b6c6d6b.zip
add fchflags and fpathconf as well.
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r--lib/libpthread/uthread/pthread_private.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h
index 9772235728e..7b3f6a7bcd4 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.7 1999/01/08 04:59:50 d Exp $
+ * $OpenBSD: pthread_private.h,v 1.8 1999/01/08 05:42:18 d Exp $
*
*/
@@ -595,7 +595,7 @@ void (*_thread_sys_signal(int, void (*)(int)))(int);
#ifdef _SYS_STAT_H_
int _thread_sys_fchmod(int, mode_t);
int _thread_sys_fstat(int, struct stat *);
-int _thread_sys_fchflags(int, u_long);
+int _thread_sys_fchflags(int, unsigned int);
#endif
/* #include <sys/mount.h> */
@@ -699,6 +699,7 @@ int _thread_sys_fchdir(int);
int _thread_sys_fchown(int, uid_t, gid_t);
int _thread_sys_fsync(int);
int _thread_sys_ftruncate(int, off_t);
+long _thread_sys_fpathconf(int, int);
int _thread_sys_pause(void);
int _thread_sys_pipe(int *);
int _thread_sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);