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.25-503-g487549c


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  487549c466e1434e812ca8877dd487398bc2df4e (commit)
      from  ed8cfb00c2fc291da1cece028bcdb05b2f4dd372 (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=487549c466e1434e812ca8877dd487398bc2df4e

commit 487549c466e1434e812ca8877dd487398bc2df4e
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Jun 19 12:21:35 2017 +0000

    Fix another x86 sys/ucontext.h namespace issue (bug 21457).
    
    This patch fixes a namespace issue for one more field in the x86
    sys/ucontext.h that I missed in my previous changes.
    
    Tested for x86_64.
    
    	[BZ #21457]
    	* sysdeps/unix/sysv/linux/x86/sys/ucontext.h [__x86_64__] (struct
    	_libc_xmmreg): Use __ctx in defining field.

diff --git a/ChangeLog b/ChangeLog
index 9a0bdbb..9a82a2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2017-06-19  Joseph Myers  <joseph@codesourcery.com>
 
+	[BZ #21457]
+	* sysdeps/unix/sysv/linux/x86/sys/ucontext.h [__x86_64__] (struct
+	_libc_xmmreg): Use __ctx in defining field.
+
 	[BZ #21597]
 	* signal/signal.h (siginterrupt): Make declaration conditional on
 	[__USE_XOPEN_EXTENDED || __USE_MISC].
diff --git a/sysdeps/unix/sysv/linux/x86/sys/ucontext.h b/sysdeps/unix/sysv/linux/x86/sys/ucontext.h
index 5fd64bf..0cbed08 100644
--- a/sysdeps/unix/sysv/linux/x86/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/x86/sys/ucontext.h
@@ -107,7 +107,7 @@ struct _libc_fpxreg
 
 struct _libc_xmmreg
 {
-  __uint32_t	element[4];
+  __uint32_t	__ctx(element)[4];
 };
 
 struct _libc_fpstate

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

Summary of changes:
 ChangeLog                                  |    4 ++++
 sysdeps/unix/sysv/linux/x86/sys/ucontext.h |    2 +-
 2 files changed, 5 insertions(+), 1 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]