From 98cbe360d947b59e7a5eda068581f4cfeb4b99b3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 21 Aug 2000 06:49:52 +0000 Subject: Update. * misc/sys/cdefs.h: Define __restrict_arr. * include/sys/time.h: Add restrict where required by AGd4. * inet/arpa/inet.h: Likewise. * io/sys/stat.h: Likewise. * io/sys/statvfs.h: Likewise. * misc/search.h: Likewise. * misc/sys/select.h: Likewise. * posix/glob.h: Likewise. * posix/regex.h: Likewise. * posix/spawn.h: Likewise. * posix/unistd.h: Likewise. * rt/aio.h: Likewise. * signal/signal.h: Likewise. * socket/sys/socket.h: Likewise. * stdlib/ucontext.h: Likewise. * streams/stropts.h: Likewise. * string/string.h: Likewise. * time/time.h: Likewise. * time/sys/time.h: Likewise. * posix/spawn.h: Add declarations for posix_spawnattr_getscheparam and posix_spawnattr_setscheparam. * libio/stdio.h: Make cuserid prototype again available for all XPG versions. --- rt/aio.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'rt') diff --git a/rt/aio.h b/rt/aio.h index 15b16ab234..61662089ff 100644 --- a/rt/aio.h +++ b/rt/aio.h @@ -147,7 +147,8 @@ extern int aio_read (struct aiocb *__aiocbp) __THROW; extern int aio_write (struct aiocb *__aiocbp) __THROW; /* Initiate list of I/O requests. */ -extern int lio_listio (int __mode, struct aiocb *__const __list[], +extern int lio_listio (int __mode, + struct aiocb *__const __list[__restrict_arr], int __nent, struct sigevent *__restrict __sig) __THROW; /* Retrieve error status associated with AIOCBP. */ @@ -174,7 +175,8 @@ extern int __REDIRECT (aio_write, (struct aiocb *__aiocbp) __THROW, aio_write64); extern int __REDIRECT (lio_listio, - (int __mode, struct aiocb *__const __list[], + (int __mode, + struct aiocb *__const __list[__restrict_arr], int __nent, struct sigevent *__restrict __sig) __THROW, lio_listio64); @@ -213,7 +215,8 @@ extern int __REDIRECT (aio_fsync, extern int aio_read64 (struct aiocb64 *__aiocbp) __THROW; extern int aio_write64 (struct aiocb64 *__aiocbp) __THROW; -extern int lio_listio64 (int __mode, struct aiocb64 *__const __list[], +extern int lio_listio64 (int __mode, + struct aiocb64 *__const __list[__restrict_arr], int __nent, struct sigevent *__restrict __sig) __THROW; -- cgit v1.2.3