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-609-g8ba1520


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  8ba1520e8c72ad0e2a33235625b37002c2715706 (commit)
      from  38547460b7173f999c4e9f9bff8b1eccb0039dc6 (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=8ba1520e8c72ad0e2a33235625b37002c2715706

commit 8ba1520e8c72ad0e2a33235625b37002c2715706
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Fri Jul 20 03:00:09 2018 +0200

    hurd: Fix installed-headers tests
    
    	* sysdeps/mach/include/mach-shortcuts-hidden.h [!_ISOMAC]: Do not
    	declare libc hidden prototypes.
    	* sysdeps/mach/include/mach/mach_traps.h [!_ISOMAC]: Likewise.

diff --git a/ChangeLog b/ChangeLog
index 93cc5f4..ace34c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@
 
 	* sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Set multiple_threads
 	to 1.
+	* sysdeps/hurd/include/hurd/port.h [!_ISOMAC]: Do not declare libc
+	hidden prototypes.
+	* sysdeps/mach/include/mach-shortcuts-hidden.h [!_ISOMAC]: Likewise.
+	* sysdeps/mach/include/mach/mach_traps.h [!_ISOMAC]: Likewise.
 
 2018-07-20  Thomas Schwinge  <tschwinge@gnu.org>
 
diff --git a/sysdeps/hurd/include/hurd/port.h b/sysdeps/hurd/include/hurd/port.h
index 84582f6..ca1d2d1 100644
--- a/sysdeps/hurd/include/hurd/port.h
+++ b/sysdeps/hurd/include/hurd/port.h
@@ -1,5 +1,6 @@
 #ifndef	_HURD_PORT_H
 #include_next <hurd/port.h>
+#ifndef _ISOMAC
 libc_hidden_proto (_hurd_port_locked_get)
 libc_hidden_proto (_hurd_port_locked_set)
 #ifdef _HURD_PORT_H_HIDDEN_DEF
@@ -7,3 +8,4 @@ libc_hidden_def (_hurd_port_locked_get)
 libc_hidden_def (_hurd_port_locked_set)
 #endif
 #endif
+#endif
diff --git a/sysdeps/mach/include/mach-shortcuts-hidden.h b/sysdeps/mach/include/mach-shortcuts-hidden.h
index 0942871..f0ab880 100644
--- a/sysdeps/mach/include/mach-shortcuts-hidden.h
+++ b/sysdeps/mach/include/mach-shortcuts-hidden.h
@@ -1,4 +1,5 @@
 #include <mach-shortcuts.h>
+#ifndef _ISOMAC
 libc_hidden_proto (__task_create)
 libc_hidden_proto (__task_terminate)
 libc_hidden_proto (__vm_allocate)
@@ -11,3 +12,4 @@ libc_hidden_proto (__mach_port_allocate_name)
 libc_hidden_proto (__mach_port_allocate)
 libc_hidden_proto (__mach_port_deallocate)
 libc_hidden_proto (__mach_port_insert_right)
+#endif
diff --git a/sysdeps/mach/include/mach/mach_traps.h b/sysdeps/mach/include/mach/mach_traps.h
index 2d4c1f9..c433495 100644
--- a/sysdeps/mach/include/mach/mach_traps.h
+++ b/sysdeps/mach/include/mach/mach_traps.h
@@ -1,6 +1,7 @@
 #ifndef _MACH_MACH_TRAPS_H
 #include_next <mach/mach_traps.h>
 
+#ifndef _ISOMAC
 extern mach_port_t __mach_reply_port (void);
 libc_hidden_proto (__mach_reply_port)
 extern mach_port_t __mach_thread_self (void);
@@ -19,3 +20,4 @@ libc_hidden_proto (__thread_switch)
 kern_return_t __evc_wait (unsigned int event);
 libc_hidden_proto (__evc_wait)
 #endif
+#endif

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

Summary of changes:
 ChangeLog                                    |    4 ++++
 sysdeps/hurd/include/hurd/port.h             |    2 ++
 sysdeps/mach/include/mach-shortcuts-hidden.h |    2 ++
 sysdeps/mach/include/mach/mach_traps.h       |    2 ++
 4 files changed, 10 insertions(+), 0 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]