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:
Daniel Eischen 2001-01-29 18:59:53 +00:00
parent 6fe4e0a915
commit f47892a9f7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71808
3 changed files with 3 additions and 3 deletions

View file

@ -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> */

View file

@ -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> */

View file

@ -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> */