From 92aabad9b20be814f9dad4e7f39999605741366d Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Fri, 3 Nov 2017 22:37:55 -0200 Subject: 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. --- sysdeps/nptl/nptl-signals.h | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 sysdeps/nptl/nptl-signals.h (limited to 'sysdeps/nptl') diff --git a/sysdeps/nptl/nptl-signals.h b/sysdeps/nptl/nptl-signals.h deleted file mode 100644 index e1275c72ff..0000000000 --- a/sysdeps/nptl/nptl-signals.h +++ /dev/null @@ -1,22 +0,0 @@ -/* Special use of signals in NPTL internals. 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 - . */ - -/* 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. */ -- cgit 1.4.1