diff options
author | jlemon <jlemon@FreeBSD.org> | 2000-08-07 16:51:56 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2000-08-07 16:51:56 +0000 |
commit | 4cc352512a9cd9c6d421fa054cf26a9bdec60d47 (patch) | |
tree | 501db957c30a9410e56389dc06d2febd72b86029 /lib/libpthread/thread/thr_kern.c | |
parent | ed47465fd4017beb82cd19e2a4c0e0fac965b390 (diff) | |
download | FreeBSD-src-4cc352512a9cd9c6d421fa054cf26a9bdec60d47.zip FreeBSD-src-4cc352512a9cd9c6d421fa054cf26a9bdec60d47.tar.gz |
Add wrapper for kevent() syscall
Noted as missing by: nicolas.leonard@animaths.com
Diffstat (limited to 'lib/libpthread/thread/thr_kern.c')
-rw-r--r-- | lib/libpthread/thread/thr_kern.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c index 8b333e4..96a11da 100644 --- a/lib/libpthread/thread/thr_kern.c +++ b/lib/libpthread/thread/thr_kern.c @@ -1008,7 +1008,7 @@ _thread_kern_poll(int wait_reqd) } void -_thread_kern_set_timeout(struct timespec * timeout) +_thread_kern_set_timeout(const struct timespec * timeout) { struct timespec current_time; struct timeval tv; |