diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-11-03 22:37:55 -0200 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2018-02-22 16:43:59 -0300 |
commit | 92aabad9b20be814f9dad4e7f39999605741366d (patch) | |
tree | 484c88e25235d0cee2c4986d4c578506788b9b5d /nptl | |
parent | fdcc625376505eacb1125a6aeba57501407a30ec (diff) | |
download | glibc-92aabad9b20be814f9dad4e7f39999605741366d.tar glibc-92aabad9b20be814f9dad4e7f39999605741366d.tar.gz glibc-92aabad9b20be814f9dad4e7f39999605741366d.tar.bz2 glibc-92aabad9b20be814f9dad4e7f39999605741366d.zip |
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 'nptl')
-rw-r--r-- | nptl/pthreadP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 583515ff48..075530c15c 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -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. */ |