This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Community source repository for glibc add-on ports branch, master, updated. glibc-2.15-22-gad8ae7d


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Community source repository for glibc add-on ports".

The branch, master has been updated
       via  ad8ae7daffc0231884874888d8a7aeeac34c8ebe (commit)
      from  c27dd89f4b9cdb40f07439a23705bccde9853f31 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=ad8ae7daffc0231884874888d8a7aeeac34c8ebe

commit ad8ae7daffc0231884874888d8a7aeeac34c8ebe
Author: Carlos O'Donell <carlos@codesourcery.com>
Date:   Mon Jan 9 00:47:04 2012 -0500

    HPPA: Initialize EPOLLONESHOT and EPOLLET correctly.
    
    The value of EPOLLONESHOT and EPOLLET should be
    initialized with an unsigned value.

diff --git a/ChangeLog.hppa b/ChangeLog.hppa
index 8988cf4..e7a80e5 100644
--- a/ChangeLog.hppa
+++ b/ChangeLog.hppa
@@ -1,5 +1,10 @@
 2012-01-08  Carlos O'Donell  <carlos@systemhalted.org>
 
+	* sysdeps/unix/sysv/linux/hppa/sys/epoll.h (EPOLLONESHOT)
+	(EPOLLET): Initialize with unsiged values.
+
+2012-01-08  Carlos O'Donell  <carlos@systemhalted.org>
+
 	* sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Sync from libc copy.
 
 2012-01-08  Carlos O'Donell  <carlos@systemhalted.org>
diff --git a/sysdeps/unix/sysv/linux/hppa/sys/epoll.h b/sysdeps/unix/sysv/linux/hppa/sys/epoll.h
index b11a34d..53037d6 100644
--- a/sysdeps/unix/sysv/linux/hppa/sys/epoll.h
+++ b/sysdeps/unix/sysv/linux/hppa/sys/epoll.h
@@ -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
   };
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog.hppa                           |    5 +++++
 sysdeps/unix/sysv/linux/hppa/sys/epoll.h |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]