From: Ulrich Drepper Date: Tue, 17 Aug 1999 01:28:07 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/pre-glibc-2_1_3~487 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23d914d96abe41e282a65329ee9e32e108b74d2c;p=thirdparty%2Fglibc.git Update. * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define O_DSYNC and O_RSYNC. Patch by Christian Gafton. --- diff --git a/ChangeLog b/ChangeLog index 4f4d6e4be4b..ca0a789f0ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-08-16 Ulrich Drepper + * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define O_DSYNC and + O_RSYNC. Patch by Christian Gafton. + * stdio-common/vfprintf.c (process_string_arg) [printf]: Handle possibly unterminated strings for %ls when a precision is specified. diff --git a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h index 30fb0b78a8d..4a3392c8a00 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h @@ -56,6 +56,14 @@ # define O_RSYNC O_SYNC /* Synchronize read operations. */ #endif +/* 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'. */ #define F_DUPFD 0 /* Duplicate file descriptor. */ #define F_GETFD 1 /* Get file descriptor flags. */