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>
This commit is contained in:
parent
ab7cbc336e
commit
e70d2f3aa9
@ -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> */
|
||||
|
@ -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> */
|
||||
|
@ -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> */
|
||||
|
Loading…
x
Reference in New Issue
Block a user