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-321-gd4379e0


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  d4379e0216d01fd1395b1f3b37255e3486760135 (commit)
      from  c15f10ee78c6fa837732bb0b3d6cec44e4171fcd (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=d4379e0216d01fd1395b1f3b37255e3486760135

commit d4379e0216d01fd1395b1f3b37255e3486760135
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Thu Apr 19 00:42:14 2018 +0200

    hurd: Fix mach installed headers test
    
    	* include/lock-intern.h [!_ISOMAC]: Do not declare libc hidden
    	prototypes.
    	* include/mach.h [!_ISOMAC]: Likewise.
    	* include/mach/mig_support.h [!_ISOMAC]: Likewise.
    	* include/mach_error.h [!_ISOMAC]: Likewise.

diff --git a/ChangeLog b/ChangeLog
index 772dbcf..dcf0b71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,11 @@
 	* sysdeps/mach/include/mach.h: Move to include/.
 	* sysdeps/mach/include/mach/mig_support.h: Move to include/mach/.
 	* sysdeps/mach/include/mach_error.h: Move to include/.
+	* include/lock-intern.h [!_ISOMAC]: Do not declare libc hidden
+	prototypes.
+	* include/mach.h [!_ISOMAC]: Likewise.
+	* include/mach/mig_support.h [!_ISOMAC]: Likewise.
+	* include/mach_error.h [!_ISOMAC]: Likewise.
 
 2018-04-16  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
diff --git a/include/lock-intern.h b/include/lock-intern.h
index d0767ab..e42ad17 100644
--- a/include/lock-intern.h
+++ b/include/lock-intern.h
@@ -1,5 +1,6 @@
 #ifndef _LOCK_INTERN_H
 #include <mach/lock-intern.h>
+#ifndef _ISOMAC
 libc_hidden_proto (__spin_lock_locked)
 libc_hidden_proto (__spin_lock)
 libc_hidden_proto (__spin_lock_solid)
@@ -10,3 +11,4 @@ libc_hidden_proto (__mutex_lock)
 libc_hidden_proto (__mutex_unlock)
 libc_hidden_proto (__mutex_trylock)
 #endif
+#endif
diff --git a/include/mach.h b/include/mach.h
index 1f77100..b4c2f45 100644
--- a/include/mach.h
+++ b/include/mach.h
@@ -1,4 +1,6 @@
 #ifndef	_MACH_H
 #include_next <mach.h>
+#ifndef _ISOMAC
 libc_hidden_proto (__mach_msg_destroy)
 #endif
+#endif
diff --git a/include/mach/mig_support.h b/include/mach/mig_support.h
index 7b9015d..b027237 100644
--- a/include/mach/mig_support.h
+++ b/include/mach/mig_support.h
@@ -1,6 +1,8 @@
 #ifndef _MACH_MIG_SUPPORT_H
 #include_next <mach/mig_support.h>
+#ifndef _ISOMAC
 libc_hidden_proto (__mig_get_reply_port)
 libc_hidden_proto (__mig_dealloc_reply_port)
 libc_hidden_proto (__mig_init)
 #endif
+#endif
diff --git a/include/mach_error.h b/include/mach_error.h
index 91463eb..de1c4ca 100644
--- a/include/mach_error.h
+++ b/include/mach_error.h
@@ -1,4 +1,6 @@
 #ifndef	_MACH_ERROR_
 #include_next <mach_error.h>
+#ifndef _ISOMAC
 libc_hidden_proto (mach_error_type)
 #endif
+#endif

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

Summary of changes:
 ChangeLog                  |    5 +++++
 include/lock-intern.h      |    2 ++
 include/mach.h             |    2 ++
 include/mach/mig_support.h |    2 ++
 include/mach_error.h       |    2 ++
 5 files changed, 13 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]