aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/internal-signals.h
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2017-11-03 22:37:55 -0200
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2018-02-22 16:43:59 -0300
commit92aabad9b20be814f9dad4e7f39999605741366d (patch)
tree484c88e25235d0cee2c4986d4c578506788b9b5d /sysdeps/generic/internal-signals.h
parentfdcc625376505eacb1125a6aeba57501407a30ec (diff)
downloadglibc-92aabad9b20be814f9dad4e7f39999605741366d.zip
glibc-92aabad9b20be814f9dad4e7f39999605741366d.tar.gz
glibc-92aabad9b20be814f9dad4e7f39999605741366d.tar.bz2
Rename nptl-signals.h to internal-signals.h
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.
Diffstat (limited to 'sysdeps/generic/internal-signals.h')
-rw-r--r--sysdeps/generic/internal-signals.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/sysdeps/generic/internal-signals.h b/sysdeps/generic/internal-signals.h
new file mode 100644
index 0000000..01e5b75
--- /dev/null
+++ b/sysdeps/generic/internal-signals.h
@@ -0,0 +1,17 @@
+/* Special use of signals internally. Stub version.
+ Copyright (C) 2014-2018 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
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ 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/>. */