diff options
author | deischen <deischen@FreeBSD.org> | 2001-01-29 18:59:53 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2001-01-29 18:59:53 +0000 |
commit | e70d2f3aa935a938ff262ba081796ab8d17cac5e (patch) | |
tree | d568b6c734ff1934177c093668a36807d57c78f8 /lib | |
parent | ab7cbc336e725e50c14730d66dac04e3e4548555 (diff) | |
download | FreeBSD-src-e70d2f3aa935a938ff262ba081796ab8d17cac5e.zip FreeBSD-src-e70d2f3aa935a938ff262ba081796ab8d17cac5e.tar.gz |
Unbreak world by correctly specifying the prototype for __sys_aio_suspend.
A make buildworld was done but not with the committed pthread_private.h.
Reported by: Manfred Antar <null@pozo.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc_r/uthread/pthread_private.h | 2 | ||||
-rw-r--r-- | lib/libkse/thread/thr_private.h | 2 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h index 66f8121..0d99de4 100644 --- a/lib/libc_r/uthread/pthread_private.h +++ b/lib/libc_r/uthread/pthread_private.h @@ -1283,7 +1283,7 @@ void _thread_cancellation_point(void); /* #include <sys/aio.h> */ #ifdef _SYS_AIO_H_ -int __sys_aio_suspend(const struct aiocb **, int, const struct timespec); +int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); #endif /* #include <signal.h> */ diff --git a/lib/libkse/thread/thr_private.h b/lib/libkse/thread/thr_private.h index 66f8121..0d99de4 100644 --- a/lib/libkse/thread/thr_private.h +++ b/lib/libkse/thread/thr_private.h @@ -1283,7 +1283,7 @@ void _thread_cancellation_point(void); /* #include <sys/aio.h> */ #ifdef _SYS_AIO_H_ -int __sys_aio_suspend(const struct aiocb **, int, const struct timespec); +int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); #endif /* #include <signal.h> */ diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 66f8121..0d99de4 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -1283,7 +1283,7 @@ void _thread_cancellation_point(void); /* #include <sys/aio.h> */ #ifdef _SYS_AIO_H_ -int __sys_aio_suspend(const struct aiocb **, int, const struct timespec); +int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); #endif /* #include <signal.h> */ |