Skip to content

Commit

Permalink
[PATCH] alpha: make poll flags the same as other architectures
Browse files Browse the repository at this point in the history
Renumber the recently-added POLLREMOVE and POLLRDHUP to line up with the other
architectures.

Cc: Davide Libenzi <[email protected]>
Cc: Ulrich Drepper <[email protected]>
Cc: Ivan Kokshaysky <[email protected]>
Cc: Richard Henderson <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Mar 28, 2006
1 parent 2735771 commit 7a1e524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/asm-alpha/poll.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#define POLLWRNORM (1 << 8)
#define POLLWRBAND (1 << 9)
#define POLLMSG (1 << 10)
#define POLLREMOVE (1 << 11)
#define POLLRDHUP (1 << 12)
#define POLLREMOVE (1 << 12)
#define POLLRDHUP (1 << 13)


struct pollfd {
Expand Down

0 comments on commit 7a1e524

Please sign in to comment.