]> sourceware.org Git - glibc.git/commitdiff
Rename nptl-signals.h to internal-signals.h
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Sat, 4 Nov 2017 00:37:55 +0000 (22:37 -0200)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 22 Feb 2018 19:43:59 +0000 (16:43 -0300)
This patch renames the nptl-signals.h header to internal-signals.h.
On Linux the definitions and functions are not only NPTL related, but
used for other POSIX definitions as well (for instance SIGTIMER for
posix times, SIGSETXID for id functions, and signal block/restore
helpers) and since generic functions will be places and used in generic
implementation it makes more sense to decouple it from NPTL.

Checked on x86_64-linux-gnu.

* sysdeps/nptl/nptl-signals.h: Move to ...
* sysdeps/generic/internal-signals.h: ... here.  Adjust internal
comments.
* sysdeps/unix/sysv/linux/internal-signals.h: Add include guards.
(__nptl_is_internal_signal): Rename to __is_internal_signal.
(__nptl_clear_internal_signals): Rename to __clear_internal_signals.
* sysdeps/unix/sysv/linux/raise.c: Adjust nptl-signal.h to
include-signals.h rename.
* nptl/pthreadP.h: Likewise.
* sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Call
__is_internal_signal instead of __nptl_is_internal_signal.

ChangeLog
nptl/pthreadP.h
sysdeps/generic/internal-signals.h [moved from sysdeps/nptl/nptl-signals.h with 74% similarity]
sysdeps/unix/sysv/linux/internal-signals.h [moved from sysdeps/unix/sysv/linux/nptl-signals.h with 89% similarity]
sysdeps/unix/sysv/linux/raise.c
sysdeps/unix/sysv/linux/spawni.c

index a9a8a4f5e46b721d5bd7dd883ce5aeb85e82c111..059537497c95560c4f515c0494282efc5e90cba7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2018-02-22  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+       * sysdeps/nptl/nptl-signals.h: Move to ...
+       * sysdeps/generic/internal-signals.h: ... here.  Adjust internal
+       comments.
+       * sysdeps/unix/sysv/linux/internal-signals.h: Add include guards.
+       (__nptl_is_internal_signal): Rename to __is_internal_signal and remove
+       unnecessary check for SIGTIMER.
+       (__nptl_clear_internal_signals): Rename to __clear_internal_signals and
+       remove unnecessary removal of SIGTIMER.
+       * sysdeps/unix/sysv/linux/raise.c: Adjust nptl-signal.h to
+       include-signals.h rename.
+       * nptl/pthreadP.h: Likewise.
+       * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Call
+       __is_internal_signal instead of __nptl_is_internal_signal.
+
 2018-02-22  Andrew Waterman <andrew@sifive.com>
 
        * sysdeps/riscv/rvd/s_fmax.c (__fmax): Handle sNaNs correctly.
index 583515ff4896afd7b91b68986f2d1ebe6851f3b9..075530c15c74af44862992550a5276e7db1f6446 100644 (file)
@@ -32,7 +32,7 @@
 #include <atomic.h>
 #include <kernel-features.h>
 #include <errno.h>
-#include <nptl-signals.h>
+#include <internal-signals.h>
 
 
 /* Atomic operations on TLS memory.  */
similarity index 74%
rename from sysdeps/nptl/nptl-signals.h
rename to sysdeps/generic/internal-signals.h
index e1275c72ff8f3dc66c2bda635048fba6b9f869fb..01e5b75b6b15faa4bd1fa46bd4807b6ec9880e3b 100644 (file)
@@ -1,4 +1,4 @@
-/* Special use of signals in NPTL internals.  Stub version.
+/* Special use of signals internally.  Stub version.
    Copyright (C) 2014-2018 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -15,8 +15,3 @@
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
-
-/* This file can define the macros SIGCANCEL, SIGTIMER, and SIGSETXID to
-   signal numbers reserved by libpthread for those internal purposes.
-
-   Note that some code presumes SIGTIMER is the same as SIGCANCEL.  */
similarity index 89%
rename from sysdeps/unix/sysv/linux/nptl-signals.h
rename to sysdeps/unix/sysv/linux/internal-signals.h
index e789198b88e76e2e96bbfb02cc2345892ae11d54..e007372f2109f43bf1b542b2c032f1b305aba007 100644 (file)
@@ -1,4 +1,4 @@
-/* Special use of signals in NPTL internals.  Linux version.
+/* Special use of signals internally.  Linux version.
    Copyright (C) 2014-2018 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -16,6 +16,9 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#ifndef __INTERNAL_SIGNALS_H
+# define __INTERNAL_SIGNALS_H
+
 #include <signal.h>
 #include <sigsetops.h>
 
 
 /* Return is sig is used internally.  */
 static inline int
-__nptl_is_internal_signal (int sig)
+__is_internal_signal (int sig)
 {
-  return (sig == SIGCANCEL) || (sig == SIGTIMER) || (sig == SIGSETXID);
+  return (sig == SIGCANCEL) || (sig == SIGSETXID);
 }
 
 /* Remove internal glibc signal from the mask.  */
 static inline void
-__nptl_clear_internal_signals (sigset_t *set)
+__clear_internal_signals (sigset_t *set)
 {
   __sigdelset (set, SIGCANCEL);
-  __sigdelset (set, SIGTIMER);
   __sigdelset (set, SIGSETXID);
 }
 
@@ -66,7 +68,7 @@ static inline int
 __libc_signal_block_app (sigset_t *set)
 {
   sigset_t allset = SIGALL_SET;
-  __nptl_clear_internal_signals (&allset);
+  __clear_internal_signals (&allset);
   INTERNAL_SYSCALL_DECL (err);
   return INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_BLOCK, &allset, set,
                           _NSIG / 8);
@@ -83,3 +85,5 @@ __libc_signal_restore_set (const sigset_t *set)
 
 /* Used to communicate with signal handler.  */
 extern struct xid_command *__xidcmd attribute_hidden;
+
+#endif
index cb98f9069c3e2f41c3ce8b9ac9249625361f7e2c..b05eae202fafd352e053d6e52d0c41a67f17a7da 100644 (file)
@@ -21,7 +21,7 @@
 #include <errno.h>
 #include <sys/types.h>
 #include <unistd.h>
-#include <nptl-signals.h>
+#include <internal-signals.h>
 
 int
 raise (int sig)
index 6b699a46dd404aa39d49349d09a191909e3e93ab..0391b9bd5eb5ee83a4cbfbe4216b96b22cf0a1c5 100644 (file)
@@ -144,7 +144,7 @@ __spawni_child (void *arguments)
        }
       else if (sigismember (&hset, sig))
        {
-         if (__nptl_is_internal_signal (sig))
+         if (__is_internal_signal (sig))
            sa.sa_handler = SIG_IGN;
          else
            {
This page took 0.092845 seconds and 5 git commands to generate.