Skip to content

Commit

Permalink
hppa: fix __O_SYNC to match the kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
John David Anglin authored and Mike Frysinger committed Feb 27, 2015
1 parent f8ab5d3 commit 49f476f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2015-02-27 John David Anglin <dave.anglin@bell.net>

* sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_SYNC): Change
to 00100000.

2015-02-27 Joseph Myers <joseph@codesourcery.com>

* sysdeps/ieee754/k_standard.c (CSTR): Add comment.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/hppa/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define O_NONBLOCK 00200004 /* HPUX has separate NDELAY & NONBLOCK */
#define __O_DSYNC 01000000
#define __O_RSYNC 02000000 /* HPUX only */
#define __O_SYNC 01000000
#define __O_SYNC 00100000
#define O_SYNC (__O_SYNC|__O_DSYNC)

#define O_BLKSEEK 00000100 /* HPUX only */
Expand Down

0 comments on commit 49f476f

Please sign in to comment.