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. fa6fbce0ad56ff03d737ca7d1cd8f66a0f93e5c8


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  fa6fbce0ad56ff03d737ca7d1cd8f66a0f93e5c8 (commit)
       via  9408ab781e5355193725b7afb1f3761395b96418 (commit)
      from  3a0a6b73bcc929f2a1167c7c23d36f630fdc615f (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=fa6fbce0ad56ff03d737ca7d1cd8f66a0f93e5c8

commit fa6fbce0ad56ff03d737ca7d1cd8f66a0f93e5c8
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Jan 5 13:56:11 2015 -0800

    Closer to NPTL building.

diff --git a/sysdeps/nacl/Makefile b/sysdeps/nacl/Makefile
index ade4df6..84ba58c 100644
--- a/sysdeps/nacl/Makefile
+++ b/sysdeps/nacl/Makefile
@@ -95,3 +95,8 @@ endif
 ifeq ($(subdir),io)
 sysdep_routines += xstatconv
 endif
+
+ifeq ($(subdir),nptl)
+# XXX temporary hack
+libpthread-routines := $(filter-out ptw-%,$(libpthread-routines))
+endif
diff --git a/sysdeps/nacl/Versions b/sysdeps/nacl/Versions
index d2d6558..60f1e92 100644
--- a/sysdeps/nacl/Versions
+++ b/sysdeps/nacl/Versions
@@ -8,4 +8,12 @@ libc {
   GLIBC_2.17 {
     nacl_interface_query;
   }
+
+  GLIBC_PRIVATE {
+    # These are used by libpthread.
+    __libc_write;
+    __libc_open;
+    __libc_close;
+    __libc_fork;
+  }
 }
diff --git a/sysdeps/nacl/lowlevellock-futex.h b/sysdeps/nacl/lowlevellock-futex.h
index eecbfb1..8d888a2 100644
--- a/sysdeps/nacl/lowlevellock-futex.h
+++ b/sysdeps/nacl/lowlevellock-futex.h
@@ -1,4 +1,4 @@
-/* Low-level locking access to futex facilities.  Stub version.
+/* Low-level locking access to futex facilities.  NaCl version.
    Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
diff --git a/sysdeps/nacl/profil-counter.h b/sysdeps/nacl/profil-counter.h
index b1d3bb6..9967fae 100644
--- a/sysdeps/nacl/profil-counter.h
+++ b/sysdeps/nacl/profil-counter.h
@@ -3,7 +3,7 @@
 #include <stdlib.h>
 
 static void
-profil_counter (int signr, int code, struct sigcontext *scp)
+__profil_counter (int signr, int code, struct sigcontext *scp)
 {
   abort ();
 }
diff --git a/sysdeps/nacl/sigaction.c b/sysdeps/nacl/sigaction.c
index 8fb9f82..898486e 100644
--- a/sysdeps/nacl/sigaction.c
+++ b/sysdeps/nacl/sigaction.c
@@ -1,2 +1,11 @@
+#if IS_IN (libpthread)
+
 /* This placeholder file prevents nptl/sigaction.c from being compiled.
    For NaCl, there is no need for a separate sigaction in libpthread.  */
+
+#else
+
+/* Get the standard stub.  */
+#include <signal/sigaction.c>
+
+#endif

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

commit 9408ab781e5355193725b7afb1f3761395b96418
Author: Roland McGrath <roland@hack.frob.com>
Date:   Mon Jan 5 13:53:13 2015 -0800

    Update copyright years.

diff --git a/sysdeps/arm/nacl/____longjmp_chk.S b/sysdeps/arm/nacl/____longjmp_chk.S
index 67ba775..f950f17 100644
--- a/sysdeps/arm/nacl/____longjmp_chk.S
+++ b/sysdeps/arm/nacl/____longjmp_chk.S
@@ -1,5 +1,5 @@
 /* longjmp that validates stack addresses.  ARM/NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/aeabi_read_tp.S b/sysdeps/arm/nacl/aeabi_read_tp.S
index 46d2285..153e6db 100644
--- a/sysdeps/arm/nacl/aeabi_read_tp.S
+++ b/sysdeps/arm/nacl/aeabi_read_tp.S
@@ -1,5 +1,5 @@
 /* ARM EABI helper function for reading the thread pointer.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/arm-features.h b/sysdeps/arm/nacl/arm-features.h
index 9b2b1bf..b00cfdb 100644
--- a/sysdeps/arm/nacl/arm-features.h
+++ b/sysdeps/arm/nacl/arm-features.h
@@ -1,5 +1,5 @@
 /* Macros to test for CPU features on ARM.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/dl-machine.h b/sysdeps/arm/nacl/dl-machine.h
index 2849163..b48517b 100644
--- a/sysdeps/arm/nacl/dl-machine.h
+++ b/sysdeps/arm/nacl/dl-machine.h
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation inline functions.  ARM/NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/dl-trampoline.S b/sysdeps/arm/nacl/dl-trampoline.S
index 9c24f61..64389aa 100644
--- a/sysdeps/arm/nacl/dl-trampoline.S
+++ b/sysdeps/arm/nacl/dl-trampoline.S
@@ -1,5 +1,5 @@
 /* PLT trampolines.  ARM/NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/include/bits/setjmp.h b/sysdeps/arm/nacl/include/bits/setjmp.h
index fab1022..41830e5 100644
--- a/sysdeps/arm/nacl/include/bits/setjmp.h
+++ b/sysdeps/arm/nacl/include/bits/setjmp.h
@@ -1,5 +1,5 @@
 /* Private jmp_buf-related definitions.  NaCl/ARM version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/arm/nacl/sysdep.h b/sysdeps/arm/nacl/sysdep.h
index 2671897..951df32 100644
--- a/sysdeps/arm/nacl/sysdep.h
+++ b/sysdeps/arm/nacl/sysdep.h
@@ -1,5 +1,5 @@
 /* Assembler macros for ARM/NaCl.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/Makefile b/sysdeps/nacl/Makefile
index 9d8569c..ade4df6 100644
--- a/sysdeps/nacl/Makefile
+++ b/sysdeps/nacl/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2014 Free Software Foundation, Inc.
+# Copyright (C) 2015 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/____longjmp_chk.c b/sysdeps/nacl/____longjmp_chk.c
index f6241a0..05ad655 100644
--- a/sysdeps/nacl/____longjmp_chk.c
+++ b/sysdeps/nacl/____longjmp_chk.c
@@ -1,5 +1,5 @@
 /* Fortified longjmp.  Stub version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/_exit.c b/sysdeps/nacl/_exit.c
index a44071e..0ec902f 100644
--- a/sysdeps/nacl/_exit.c
+++ b/sysdeps/nacl/_exit.c
@@ -1,5 +1,5 @@
 /* _exit -- low-level program termination.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/bits/local_lim.h b/sysdeps/nacl/bits/local_lim.h
index 2792161..950a237 100644
--- a/sysdeps/nacl/bits/local_lim.h
+++ b/sysdeps/nacl/bits/local_lim.h
@@ -1,5 +1,5 @@
 /* Minimum guaranteed maximum values for system limits.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.
 
diff --git a/sysdeps/nacl/bits/mman.h b/sysdeps/nacl/bits/mman.h
index 56fe8d1..2d5fdfc 100644
--- a/sysdeps/nacl/bits/mman.h
+++ b/sysdeps/nacl/bits/mman.h
@@ -1,5 +1,5 @@
 /* Definitions for POSIX memory map interface.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/bits/stat.h b/sysdeps/nacl/bits/stat.h
index baf28f8..0cd3500 100644
--- a/sysdeps/nacl/bits/stat.h
+++ b/sysdeps/nacl/bits/stat.h
@@ -1,5 +1,5 @@
 /* 'struct stat' and related definitions.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/bits/typesizes.h b/sysdeps/nacl/bits/typesizes.h
index d379b47..2a29035 100644
--- a/sysdeps/nacl/bits/typesizes.h
+++ b/sysdeps/nacl/bits/typesizes.h
@@ -1,5 +1,5 @@
 /* bits/typesizes.h -- underlying types for *_t.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/brk.c b/sysdeps/nacl/brk.c
index 58968e3..bc103de 100644
--- a/sysdeps/nacl/brk.c
+++ b/sysdeps/nacl/brk.c
@@ -1,5 +1,5 @@
 /* brk -- Adjust the "break" at the end of initial data.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/check_fds.c b/sysdeps/nacl/check_fds.c
index 0fed5ee..a6bd8d8 100644
--- a/sysdeps/nacl/check_fds.c
+++ b/sysdeps/nacl/check_fds.c
@@ -1,5 +1,5 @@
 /* Check inherited file descriptors for sanity at startup.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/clock.c b/sysdeps/nacl/clock.c
index 87a227f..e3bf897 100644
--- a/sysdeps/nacl/clock.c
+++ b/sysdeps/nacl/clock.c
@@ -1,5 +1,5 @@
 /* Return the time used by the program so far.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/clock_getres.c b/sysdeps/nacl/clock_getres.c
index 0e9b6c8..4605206 100644
--- a/sysdeps/nacl/clock_getres.c
+++ b/sysdeps/nacl/clock_getres.c
@@ -1,5 +1,5 @@
 /* Get the resolution of a clock.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/clock_gettime.c b/sysdeps/nacl/clock_gettime.c
index f714ae4..8103ae3 100644
--- a/sysdeps/nacl/clock_gettime.c
+++ b/sysdeps/nacl/clock_gettime.c
@@ -1,5 +1,5 @@
 /* Get the current value of a clock.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/close.c b/sysdeps/nacl/close.c
index 3a9d592..c90a795 100644
--- a/sysdeps/nacl/close.c
+++ b/sysdeps/nacl/close.c
@@ -1,5 +1,5 @@
 /* Close a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/createthread.c b/sysdeps/nacl/createthread.c
index 89a58a7..9df4eae 100644
--- a/sysdeps/nacl/createthread.c
+++ b/sysdeps/nacl/createthread.c
@@ -1,5 +1,5 @@
 /* Low-level thread creation for NPTL.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-map-segments.h b/sysdeps/nacl/dl-map-segments.h
index a5b7846..0dd0af9 100644
--- a/sysdeps/nacl/dl-map-segments.h
+++ b/sysdeps/nacl/dl-map-segments.h
@@ -1,5 +1,5 @@
 /* Map in a shared object's segments.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-osinfo.h b/sysdeps/nacl/dl-osinfo.h
index 8647db0..ee74d9d 100644
--- a/sysdeps/nacl/dl-osinfo.h
+++ b/sysdeps/nacl/dl-osinfo.h
@@ -1,5 +1,5 @@
 /* DL_SYSDEP_OSCHECK macro for NaCl.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-sysdep.c b/sysdeps/nacl/dl-sysdep.c
index 7562e7c..f9af5a3 100644
--- a/sysdeps/nacl/dl-sysdep.c
+++ b/sysdeps/nacl/dl-sysdep.c
@@ -1,5 +1,5 @@
 /* Operating system support for run-time dynamic linker.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-sysdep.h b/sysdeps/nacl/dl-sysdep.h
index cfe7b62..ade4213 100644
--- a/sysdeps/nacl/dl-sysdep.h
+++ b/sysdeps/nacl/dl-sysdep.h
@@ -1,5 +1,5 @@
 /* System-specific settings for dynamic linker code.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-unmap-segments.h b/sysdeps/nacl/dl-unmap-segments.h
index 97e14e9..f1043ee 100644
--- a/sysdeps/nacl/dl-unmap-segments.h
+++ b/sysdeps/nacl/dl-unmap-segments.h
@@ -1,5 +1,5 @@
 /* Unmap a shared object's segments.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dl-writev.h b/sysdeps/nacl/dl-writev.h
index e84282d..e61d9d1 100644
--- a/sysdeps/nacl/dl-writev.h
+++ b/sysdeps/nacl/dl-writev.h
@@ -1,5 +1,5 @@
 /* Message-writing for the dynamic linker.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dup.c b/sysdeps/nacl/dup.c
index 4598570..1f66c52 100644
--- a/sysdeps/nacl/dup.c
+++ b/sysdeps/nacl/dup.c
@@ -1,5 +1,5 @@
 /* Duplicate a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/dup2.c b/sysdeps/nacl/dup2.c
index d7333bd..948a108 100644
--- a/sysdeps/nacl/dup2.c
+++ b/sysdeps/nacl/dup2.c
@@ -1,5 +1,5 @@
 /* Duplicate a file descriptor to a chosen number.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/exit-thread.h b/sysdeps/nacl/exit-thread.h
index 9c8ed33..a08a5b1 100644
--- a/sysdeps/nacl/exit-thread.h
+++ b/sysdeps/nacl/exit-thread.h
@@ -1,5 +1,5 @@
 /* Call to terminate the current thread.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/fxstat.c b/sysdeps/nacl/fxstat.c
index a2d439e..d9f3d20 100644
--- a/sysdeps/nacl/fxstat.c
+++ b/sysdeps/nacl/fxstat.c
@@ -1,5 +1,5 @@
 /* Get stat information from a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/getdents.c b/sysdeps/nacl/getdents.c
index 48dc88a..e022b6b 100644
--- a/sysdeps/nacl/getdents.c
+++ b/sysdeps/nacl/getdents.c
@@ -1,5 +1,5 @@
 /* Read directory entries from a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/getdtsz.c b/sysdeps/nacl/getdtsz.c
index a602df7..31c9978 100644
--- a/sysdeps/nacl/getdtsz.c
+++ b/sysdeps/nacl/getdtsz.c
@@ -1,5 +1,5 @@
 /* getdtablesize -- Return the limit on file descriptor values.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/getpid.c b/sysdeps/nacl/getpid.c
index ce677e9..1b6d2d5 100644
--- a/sysdeps/nacl/getpid.c
+++ b/sysdeps/nacl/getpid.c
@@ -1,5 +1,5 @@
 /* Get the process ID of the calling process.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/getsysstats.c b/sysdeps/nacl/getsysstats.c
index 52601f3..c9c8a19 100644
--- a/sysdeps/nacl/getsysstats.c
+++ b/sysdeps/nacl/getsysstats.c
@@ -1,5 +1,5 @@
 /* getsysstats - Determine various system internal values.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/gettimeofday.c b/sysdeps/nacl/gettimeofday.c
index 9989d92..9fb8dab 100644
--- a/sysdeps/nacl/gettimeofday.c
+++ b/sysdeps/nacl/gettimeofday.c
@@ -1,5 +1,5 @@
 /* Get the current wall clock time.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/init-first.c b/sysdeps/nacl/init-first.c
index 798e9ca..5830c6f 100644
--- a/sysdeps/nacl/init-first.c
+++ b/sysdeps/nacl/init-first.c
@@ -1,5 +1,5 @@
 /* Initialization code run first thing by the ELF startup code.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/kernel-features.h b/sysdeps/nacl/kernel-features.h
index a051784..3ae983d 100644
--- a/sysdeps/nacl/kernel-features.h
+++ b/sysdeps/nacl/kernel-features.h
@@ -1,5 +1,5 @@
 /* Set flags signalling availability of certain operating system features.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/ldsodefs.h b/sysdeps/nacl/ldsodefs.h
index c75c3c4..c1cfd12 100644
--- a/sysdeps/nacl/ldsodefs.h
+++ b/sysdeps/nacl/ldsodefs.h
@@ -1,5 +1,5 @@
 /* Run-time dynamic linker data structures for loaded ELF shared objects.  NaCl.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/lowlevellock-futex.h b/sysdeps/nacl/lowlevellock-futex.h
index ec856df..eecbfb1 100644
--- a/sysdeps/nacl/lowlevellock-futex.h
+++ b/sysdeps/nacl/lowlevellock-futex.h
@@ -1,5 +1,5 @@
 /* Low-level locking access to futex facilities.  Stub version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/lseek.c b/sysdeps/nacl/lseek.c
index 50f3ea4..6451eb5 100644
--- a/sysdeps/nacl/lseek.c
+++ b/sysdeps/nacl/lseek.c
@@ -1,5 +1,5 @@
 /* lseek -- Move the file position of a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/mmap.c b/sysdeps/nacl/mmap.c
index 283b4a1..e9c5326 100644
--- a/sysdeps/nacl/mmap.c
+++ b/sysdeps/nacl/mmap.c
@@ -1,5 +1,5 @@
 /* Map addresses from a file or anonymous memory.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/mprotect.c b/sysdeps/nacl/mprotect.c
index 4ea2d11..6fd6a4d 100644
--- a/sysdeps/nacl/mprotect.c
+++ b/sysdeps/nacl/mprotect.c
@@ -1,5 +1,5 @@
 /* Change memory protections on pages.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/munmap.c b/sysdeps/nacl/munmap.c
index 9a68247..194e409 100644
--- a/sysdeps/nacl/munmap.c
+++ b/sysdeps/nacl/munmap.c
@@ -1,5 +1,5 @@
 /* Deallocate a region of pages.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/nacl-interface-table.c b/sysdeps/nacl/nacl-interface-table.c
index 13d8280..5a53fbd 100644
--- a/sysdeps/nacl/nacl-interface-table.c
+++ b/sysdeps/nacl/nacl-interface-table.c
@@ -1,5 +1,5 @@
 /* Define one NaCl interface table.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/nacl-interfaces.c b/sysdeps/nacl/nacl-interfaces.c
index 4d26cc9..469ee65 100644
--- a/sysdeps/nacl/nacl-interfaces.c
+++ b/sysdeps/nacl/nacl-interfaces.c
@@ -1,5 +1,5 @@
 /* Using NaCl interface tables.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/nacl-interfaces.h b/sysdeps/nacl/nacl-interfaces.h
index c7dc2c0..524ca8d 100644
--- a/sysdeps/nacl/nacl-interfaces.h
+++ b/sysdeps/nacl/nacl-interfaces.h
@@ -1,5 +1,5 @@
 /* Using NaCl interface tables.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/nacl_interface_query.c b/sysdeps/nacl/nacl_interface_query.c
index 476ef92..cae876b 100644
--- a/sysdeps/nacl/nacl_interface_query.c
+++ b/sysdeps/nacl/nacl_interface_query.c
@@ -1,5 +1,5 @@
 /* NaCl function exposing IRT interface query.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/nanosleep.c b/sysdeps/nacl/nanosleep.c
index ac02b22..cc60a46 100644
--- a/sysdeps/nacl/nanosleep.c
+++ b/sysdeps/nacl/nanosleep.c
@@ -1,5 +1,5 @@
 /* nanosleep -- Sleep for a duration given in nanoseconds.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/open.c b/sysdeps/nacl/open.c
index 84c8c84..cb4700f 100644
--- a/sysdeps/nacl/open.c
+++ b/sysdeps/nacl/open.c
@@ -1,5 +1,5 @@
 /* Open a file by name.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/read.c b/sysdeps/nacl/read.c
index e2902fd..fef0c82 100644
--- a/sysdeps/nacl/read.c
+++ b/sysdeps/nacl/read.c
@@ -1,5 +1,5 @@
 /* read -- Read data from a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/sched_yield.c b/sysdeps/nacl/sched_yield.c
index 561cbb9..c9c7aaa 100644
--- a/sysdeps/nacl/sched_yield.c
+++ b/sysdeps/nacl/sched_yield.c
@@ -1,5 +1,5 @@
 /* sched_yield -- Yield the processor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/start.c b/sysdeps/nacl/start.c
index a74c941..a4b6dd3 100644
--- a/sysdeps/nacl/start.c
+++ b/sysdeps/nacl/start.c
@@ -1,5 +1,5 @@
 /* Entry-point for programs.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/tls.h b/sysdeps/nacl/tls.h
index dcfa2e8..ccf4e83 100644
--- a/sysdeps/nacl/tls.h
+++ b/sysdeps/nacl/tls.h
@@ -1,5 +1,5 @@
 /* Definition for thread-local data handling.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/write.c b/sysdeps/nacl/write.c
index f8edc3f..d4063fd 100644
--- a/sysdeps/nacl/write.c
+++ b/sysdeps/nacl/write.c
@@ -1,5 +1,5 @@
 /* write -- Write data to a file descriptor.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/xstat.c b/sysdeps/nacl/xstat.c
index 08e51f7..022cf02 100644
--- a/sysdeps/nacl/xstat.c
+++ b/sysdeps/nacl/xstat.c
@@ -1,5 +1,5 @@
 /* Get stat information from a file name.  NaCl version.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/xstatconv.c b/sysdeps/nacl/xstatconv.c
index 73cdf41..ecab76c 100644
--- a/sysdeps/nacl/xstatconv.c
+++ b/sysdeps/nacl/xstatconv.c
@@ -1,5 +1,5 @@
 /* Convert between the NaCl ABI's `struct stat' format, and libc's.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/sysdeps/nacl/xstatconv.h b/sysdeps/nacl/xstatconv.h
index 2567242..fb313a2 100644
--- a/sysdeps/nacl/xstatconv.h
+++ b/sysdeps/nacl/xstatconv.h
@@ -1,5 +1,5 @@
 /* Convert between the NaCl ABI's `struct stat' format, and libc's.
-   Copyright (C) 2014 Free Software Foundation, Inc.
+   Copyright (C) 2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or

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

Summary of changes:
 sysdeps/arm/nacl/____longjmp_chk.S     |    2 +-
 sysdeps/arm/nacl/aeabi_read_tp.S       |    2 +-
 sysdeps/arm/nacl/arm-features.h        |    2 +-
 sysdeps/arm/nacl/dl-machine.h          |    2 +-
 sysdeps/arm/nacl/dl-trampoline.S       |    2 +-
 sysdeps/arm/nacl/include/bits/setjmp.h |    2 +-
 sysdeps/arm/nacl/sysdep.h              |    2 +-
 sysdeps/nacl/Makefile                  |    7 ++++++-
 sysdeps/nacl/Versions                  |    8 ++++++++
 sysdeps/nacl/____longjmp_chk.c         |    2 +-
 sysdeps/nacl/_exit.c                   |    2 +-
 sysdeps/nacl/bits/local_lim.h          |    2 +-
 sysdeps/nacl/bits/mman.h               |    2 +-
 sysdeps/nacl/bits/stat.h               |    2 +-
 sysdeps/nacl/bits/typesizes.h          |    2 +-
 sysdeps/nacl/brk.c                     |    2 +-
 sysdeps/nacl/check_fds.c               |    2 +-
 sysdeps/nacl/clock.c                   |    2 +-
 sysdeps/nacl/clock_getres.c            |    2 +-
 sysdeps/nacl/clock_gettime.c           |    2 +-
 sysdeps/nacl/close.c                   |    2 +-
 sysdeps/nacl/createthread.c            |    2 +-
 sysdeps/nacl/dl-map-segments.h         |    2 +-
 sysdeps/nacl/dl-osinfo.h               |    2 +-
 sysdeps/nacl/dl-sysdep.c               |    2 +-
 sysdeps/nacl/dl-sysdep.h               |    2 +-
 sysdeps/nacl/dl-unmap-segments.h       |    2 +-
 sysdeps/nacl/dl-writev.h               |    2 +-
 sysdeps/nacl/dup.c                     |    2 +-
 sysdeps/nacl/dup2.c                    |    2 +-
 sysdeps/nacl/exit-thread.h             |    2 +-
 sysdeps/nacl/fxstat.c                  |    2 +-
 sysdeps/nacl/getdents.c                |    2 +-
 sysdeps/nacl/getdtsz.c                 |    2 +-
 sysdeps/nacl/getpid.c                  |    2 +-
 sysdeps/nacl/getsysstats.c             |    2 +-
 sysdeps/nacl/gettimeofday.c            |    2 +-
 sysdeps/nacl/init-first.c              |    2 +-
 sysdeps/nacl/kernel-features.h         |    2 +-
 sysdeps/nacl/ldsodefs.h                |    2 +-
 sysdeps/nacl/lowlevellock-futex.h      |    4 ++--
 sysdeps/nacl/lseek.c                   |    2 +-
 sysdeps/nacl/mmap.c                    |    2 +-
 sysdeps/nacl/mprotect.c                |    2 +-
 sysdeps/nacl/munmap.c                  |    2 +-
 sysdeps/nacl/nacl-interface-table.c    |    2 +-
 sysdeps/nacl/nacl-interfaces.c         |    2 +-
 sysdeps/nacl/nacl-interfaces.h         |    2 +-
 sysdeps/nacl/nacl_interface_query.c    |    2 +-
 sysdeps/nacl/nanosleep.c               |    2 +-
 sysdeps/nacl/open.c                    |    2 +-
 sysdeps/nacl/profil-counter.h          |    2 +-
 sysdeps/nacl/read.c                    |    2 +-
 sysdeps/nacl/sched_yield.c             |    2 +-
 sysdeps/nacl/sigaction.c               |    9 +++++++++
 sysdeps/nacl/start.c                   |    2 +-
 sysdeps/nacl/tls.h                     |    2 +-
 sysdeps/nacl/write.c                   |    2 +-
 sysdeps/nacl/xstat.c                   |    2 +-
 sysdeps/nacl/xstatconv.c               |    2 +-
 sysdeps/nacl/xstatconv.h               |    2 +-
 61 files changed, 82 insertions(+), 60 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]