summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Syromyatnikov <evgsyr@gmail.com>2018-02-15 18:34:25 +0100
committerDmitry V. Levin <ldv@altlinux.org>2018-02-27 13:14:38 +0000
commit176c894c9199c6bc9292ea5cf4b5922d04f708da (patch)
treeb56ca94533987f78fc78d37862d6f26291c470f5
parenta3b09b9c3b7691713c7a7a21d473ba05860c9e40 (diff)
downloadstrace-176c894c9199c6bc9292ea5cf4b5922d04f708da.tar.gz
xlat: update the list of poll event flags
POLL_BUSY_LOOP was introduced by linux kernel commit v3.11-rc1~64^2~129 as POLL_LL and then renamed in v3.11-rc1~64^2~9. POLLRDHUP was introduced by linux kernel commit v2.6.17-rc1~796. POLLMSG and POLLREMOVE predate git repository. POLLFREE was introduced by linux kernel commit v3.3-rc5~8 for internal use only. * xlat/pollflags.in (POLLMSG, POLLREMOVE, POLLRDHUP, POLL_BUSY_LOOP): New constants. * NEWS: Mention it.
-rw-r--r--NEWS2
-rw-r--r--xlat/pollflags.in4
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index bdb9a6972..819c91f1b 100644
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,7 @@ Noteworthy changes in release ?.?? (????-??-??)
in brackets.
* Enhanced NETLINK_ROUTE protocol decoding.
* Updated lists of signal codes.
- * Updated the list of RWF_* constants.
+ * Updated lists of POLL* and RWF_* constants.
* Bug fixes
* Fixed build on m68k.
diff --git a/xlat/pollflags.in b/xlat/pollflags.in
index db41909fb..61d4f061e 100644
--- a/xlat/pollflags.in
+++ b/xlat/pollflags.in
@@ -8,3 +8,7 @@ POLLWRBAND
POLLERR
POLLHUP
POLLNVAL
+POLLMSG
+POLLREMOVE
+POLLRDHUP
+POLL_BUSY_LOOP