Make aio_suspend() POSIX-compliant.

This commit is contained in:
Ralf Corsepius
2009-01-02 09:53:09 +00:00
parent 44cec3c504
commit 08fb27cc41
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ int aio_cancel(
*/ */
int aio_suspend( int aio_suspend(
struct aiocb * const list[], const struct aiocb * const list[],
int nent, int nent,
const struct timespec *timeout const struct timespec *timeout
); );

View File

@@ -22,7 +22,7 @@
#include <rtems/seterr.h> #include <rtems/seterr.h>
int aio_suspend( int aio_suspend(
struct aiocb * const list[], const struct aiocb * const list[],
int nent, int nent,
const struct timespec *timeout const struct timespec *timeout
) )