mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
* rt/aio_fsync.c: Test OP parameter for correct values.
This commit is contained in:
parent
d65ddb3495
commit
cfafc6fd96
@ -10,6 +10,8 @@
|
||||
|
||||
* rt/aio_misc.c: Set errno at correct place.
|
||||
|
||||
* rt/aio_fsync.c: Test OP parameter for correct values.
|
||||
|
||||
1999-08-04 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <aio.h>
|
||||
/* And undo the hack. */
|
||||
#undef aio_fsync64
|
||||
#include <errno.h>
|
||||
|
||||
#include "aio_misc.h"
|
||||
|
||||
@ -35,6 +36,12 @@
|
||||
int
|
||||
aio_fsync (int op, struct aiocb *aiocbp)
|
||||
{
|
||||
if (op != O_DSYNC && op != O_SYNC)
|
||||
{
|
||||
__set_errno (EINVAL);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return (__aio_enqueue_request ((aiocb_union *) aiocbp,
|
||||
op == O_SYNC ? LIO_SYNC : LIO_DSYNC) == NULL
|
||||
? -1 : 0);
|
||||
|
Loading…
Reference in New Issue
Block a user