]> sourceware.org Git - glibc.git/blobdiff - sysdeps/unix/sysv/linux/mips/sys/epoll.h
Define EPOLLONESHOT and EPOLLET using unsigned values for MIPS.
[glibc.git] / sysdeps / unix / sysv / linux / mips / sys / epoll.h
index 6d2ec8edf089704d0d59f5260f3f86b02ce69804..51a657a5b50574c2c0a0c59eb52efba9c7fbce9e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2006, 2007, 2008 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2006, 2007, 2008, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -65,9 +65,9 @@ enum EPOLL_EVENTS
 #define EPOLLHUP EPOLLHUP
     EPOLLRDHUP = 0x2000,
 #define EPOLLRDHUP EPOLLRDHUP
-    EPOLLONESHOT = (1 << 30),
+    EPOLLONESHOT = 1u << 30,
 #define EPOLLONESHOT EPOLLONESHOT
-    EPOLLET = (1 << 31)
+    EPOLLET = 1u << 31
 #define EPOLLET EPOLLET
   };
 
This page took 0.025341 seconds and 5 git commands to generate.