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]

GNU C Library master sources branch master updated. glibc-2.24-192-g32daf20


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 "GNU C Library master sources".

The branch, master has been updated
       via  32daf20b54744fd808fff8239b4a1d50e40ad027 (commit)
      from  e33a23fbe8c2dba04fe05678c584d3efcb6c9951 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=32daf20b54744fd808fff8239b4a1d50e40ad027

commit 32daf20b54744fd808fff8239b4a1d50e40ad027
Author: Zack Weinberg <zackw@panix.com>
Date:   Wed Sep 28 07:19:59 2016 -0400

    Minor correction to the "installed header hygiene" patches.
    
      	* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
    	deleted typedef ucontext_t.

diff --git a/ChangeLog b/ChangeLog
index 50d19e7..0484809 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-28  Zack Weinberg  <zackw@panix.com>
+
+	* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
+	deleted typedef ucontext_t.
+
 2016-09-26  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysdeps/unix/sysdep.h (__INTERNAL_SYSCALL0): New macro.
diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h
index 0128d1f..35d3068 100644
--- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h
@@ -74,14 +74,14 @@ typedef struct
   } mcontext_t;
 
 /* Userlevel context.  */
-struct ucontext
+typedef struct ucontext
   {
     unsigned long int uc_flags;
     struct ucontext *uc_link;
     stack_t uc_stack;
     mcontext_t uc_mcontext;
     __sigset_t uc_sigmask;
-  };
+  } ucontext_t;
 
 
 #endif /* sys/ucontext.h */

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

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


hooks/post-receive
-- 
GNU C Library master sources


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