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 roland/nacl-port/master updated. ed3a689f5f987d26b1dcf11abbc84ad33555df7f


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, roland/nacl-port/master has been updated
       via  ed3a689f5f987d26b1dcf11abbc84ad33555df7f (commit)
       via  6455a0f2ebd59bc336ab80e1ce2d995a8da2c475 (commit)
      from  fa6fbce0ad56ff03d737ca7d1cd8f66a0f93e5c8 (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=ed3a689f5f987d26b1dcf11abbc84ad33555df7f

commit ed3a689f5f987d26b1dcf11abbc84ad33555df7f
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Jan 8 14:00:35 2015 -0800

    Do not try to build nptl_db.

diff --git a/sysdeps/nacl/Makefile b/sysdeps/nacl/Makefile
index 84ba58c..86d8465 100644
--- a/sysdeps/nacl/Makefile
+++ b/sysdeps/nacl/Makefile
@@ -15,6 +15,12 @@
 # License along with the GNU C Library; if not, see
 # <http://www.gnu.org/licenses/>.
 
+# The libthread_db code does not compile for NaCl because there is no
+# sys/procfs.h supplying the register layout types.  But since libthread_db
+# will probably never be useful for NaCl, just elide the directory rather
+# than implementing stuff to make it compile (and never get used).
+subdirs := $(filter-out nptl_db,$(subdirs))
+
 # The (required) --with-headers option to configure sets sysheaders to the
 # location of the native_client/.. source directory.  We'll get necessary
 # headers directly from there.

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6455a0f2ebd59bc336ab80e1ce2d995a8da2c475

commit 6455a0f2ebd59bc336ab80e1ce2d995a8da2c475
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Jan 8 13:58:56 2015 -0800

    Add some __libc_foo aliases for libpthread to use.

diff --git a/sysdeps/nacl/close.c b/sysdeps/nacl/close.c
index c90a795..9f550f9 100644
--- a/sysdeps/nacl/close.c
+++ b/sysdeps/nacl/close.c
@@ -27,4 +27,5 @@ __close (int fd)
   return NACL_CALL (__nacl_irt_fdio.close (fd), 0);
 }
 libc_hidden_def (__close)
+strong_alias (__close, __libc_close)
 weak_alias (__close, close)
diff --git a/sysdeps/nacl/fork.c b/sysdeps/nacl/fork.c
index 2502a66..9f06944 100644
--- a/sysdeps/nacl/fork.c
+++ b/sysdeps/nacl/fork.c
@@ -1,2 +1,3 @@
 /* Get the stub, bypassing the "generic" NPTL code.  */
 #include <posix/fork.c>
+strong_alias (__fork, __libc_fork)

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

Summary of changes:
 sysdeps/nacl/Makefile |    6 ++++++
 sysdeps/nacl/close.c  |    1 +
 sysdeps/nacl/fork.c   |    1 +
 3 files changed, 8 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]