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.27.9000-481-g4d0ac03


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  4d0ac0375ba54da7d36aae6b7932e8813b2c89af (commit)
      from  f96a85e0fe83abdc30c73e6f01b995baf733e97b (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=4d0ac0375ba54da7d36aae6b7932e8813b2c89af

commit 4d0ac0375ba54da7d36aae6b7932e8813b2c89af
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sat Jun 16 14:07:23 2018 +0000

    hurd: Fix reference to _hurd_self_sigstate
    
    	* sysdeps/hurd/include/hurd/signal.h (_hurd_self_sigstate): Add hidden
    	prototype and definition.
    	* sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Use
    	hidden target for _hurd_self_sigstate.

diff --git a/ChangeLog b/ChangeLog
index 363ae5b..9dd87ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,10 @@
 	__swtch_pri, __thread_switch, __evc_wait): Add hidden prototypes.
 	* sysdeps/mach/hurd/localplt.data (siglongjmp, longjmp,
 	__libc_lseek64, _IO_funlockfile): Whitelist PLT references.
+	* sysdeps/hurd/include/hurd/signal.h (_hurd_self_sigstate): Add hidden
+	prototype and definition.
+	* sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Use
+	hidden target for _hurd_self_sigstate.
 
 2018-06-15  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/hurd/include/hurd/signal.h b/sysdeps/hurd/include/hurd/signal.h
index 1cb0ada..8ceab32 100644
--- a/sysdeps/hurd/include/hurd/signal.h
+++ b/sysdeps/hurd/include/hurd/signal.h
@@ -1,9 +1,18 @@
 #ifndef	_HURD_SIGNAL_H
+extern struct hurd_sigstate *_hurd_self_sigstate (void) __attribute__ ((__const__));
+#ifndef _ISOMAC
+libc_hidden_proto (_hurd_self_sigstate)
+#endif
+
 #include_next <hurd/signal.h>
+
 #ifndef _ISOMAC
 libc_hidden_proto (_hurd_exception2signal)
 libc_hidden_proto (_hurd_intr_rpc_mach_msg)
 libc_hidden_proto (_hurd_thread_sigstate)
 libc_hidden_proto (_hurd_raise_signal)
 #endif
+#ifdef _HURD_SIGNAL_H_HIDDEN_DEF
+libc_hidden_def (_hurd_self_sigstate)
+#endif
 #endif
diff --git a/sysdeps/mach/hurd/i386/____longjmp_chk.S b/sysdeps/mach/hurd/i386/____longjmp_chk.S
index 1bde0ef..7c3a73a 100644
--- a/sysdeps/mach/hurd/i386/____longjmp_chk.S
+++ b/sysdeps/mach/hurd/i386/____longjmp_chk.S
@@ -68,7 +68,7 @@ ENTRY (____longjmp_chk)
 
 	/* TODO: need locking?  */
 	/* struct hurd_sigstate * _hurd_self_sigstate (void) */
-	call	_hurd_self_sigstate
+	call	HIDDEN_JUMPTARGET(_hurd_self_sigstate)
 	/* TODO: %eax and %eax->sigaltstack are always valid?  */
 
 	testl	$SS_ONSTACK, (HURD_SIGSTATE__SIGALTSTACK__OFFSET + SIGALTSTACK__SS_FLAGS__OFFSET)(%eax)

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

Summary of changes:
 ChangeLog                                |    4 ++++
 sysdeps/hurd/include/hurd/signal.h       |    9 +++++++++
 sysdeps/mach/hurd/i386/____longjmp_chk.S |    2 +-
 3 files changed, 14 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]