]> granicus.if.org Git - strace/commitdiff
xlat: update the list of RWF_* constants
authorEugene Syromyatnikov <evgsyr@gmail.com>
Mon, 12 Feb 2018 18:41:41 +0000 (19:41 +0100)
committerDmitry V. Levin <ldv@altlinux.org>
Tue, 27 Feb 2018 13:14:38 +0000 (13:14 +0000)
* xlat/rwf_flags.in (RWF_APPEND): New constant introduced by linux
kernel commit v4.16-rc1~145^2~7.
* NEWS: Mention it.

NEWS
xlat/rwf_flags.in

diff --git a/NEWS b/NEWS
index 682b2a61f4c8e397e45a26ac9a4a595859588298..d0e395894715b229e4da2fa4b616508a9a4c5e5a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ Noteworthy changes in release ?.?? (????-??-??)
 * Improvements
   * IPv6 addresses shown in socket information in -yy mode are now printed
     in brackets.
+  * Updated the list of RWF_* constants.
 
 * Bug fixes
   * Fixed build on m68k.
index 34b2eb176d429428a0c13756a1643775537d4a3c..3f63f5a2d28d81e7b2032cdb9f6a507d1c1ab375 100644 (file)
@@ -1,4 +1,5 @@
-RWF_HIPRI      1
-RWF_DSYNC      2
-RWF_SYNC       4
-RWF_NOWAIT     8
+RWF_HIPRI      0x01
+RWF_DSYNC      0x02
+RWF_SYNC       0x04
+RWF_NOWAIT     0x08
+RWF_APPEND     0x10