mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-31 15:01:09 +00:00
Update.
1999-08-05 Thorsten Kukuk <kukuk@suse.de> * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_RSYNC, O_DSYNC): Define.
This commit is contained in:
parent
4a900f3be3
commit
b85f2e879f
@ -1,3 +1,8 @@
|
|||||||
|
1999-08-05 Thorsten Kukuk <kukuk@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_RSYNC, O_DSYNC):
|
||||||
|
Define.
|
||||||
|
|
||||||
1999-08-04 Ulrich Drepper <drepper@cygnus.com>
|
1999-08-04 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* rt/aio_read.c: Fix return value.
|
* rt/aio_read.c: Fix return value.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* O_*, F_*, FD_* bit values for Linux.
|
/* O_*, F_*, FD_* bit values for Linux.
|
||||||
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -52,6 +52,14 @@
|
|||||||
/* Not necessary, files are always with 64bit off_t. */
|
/* Not necessary, files are always with 64bit off_t. */
|
||||||
#define O_LARGEFILE 0
|
#define O_LARGEFILE 0
|
||||||
|
|
||||||
|
/* For now Linux has synchronisity options for data and read operations.
|
||||||
|
We define the symbols here but let them do the same as O_SYNC since
|
||||||
|
this is a superset. */
|
||||||
|
#if defined __USE_POSIX199309 || defined __USE_UNIX98
|
||||||
|
# define O_DSYNC O_SYNC /* Synchronize data. */
|
||||||
|
# define O_RSYNC O_SYNC /* Synchronize read operations. */
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Values for the second argument to `fcntl'. */
|
/* Values for the second argument to `fcntl'. */
|
||||||
#define F_DUPFD 0 /* Duplicate file descriptor. */
|
#define F_DUPFD 0 /* Duplicate file descriptor. */
|
||||||
#define F_GETFD 1 /* Get file descriptor flags. */
|
#define F_GETFD 1 /* Get file descriptor flags. */
|
||||||
|
Loading…
Reference in New Issue
Block a user