Move signal.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-25 00:37:42 +02:00
parent 50ae094c6f
commit bff6b077da
16 changed files with 28 additions and 28 deletions

View File

@ -67,11 +67,11 @@ op-new.o \
rewind.o \ rewind.o \
setbuf.o \ setbuf.o \
setvbuf.o \ setvbuf.o \
sigaddset.o \ signal/sigaddset.o \
sigdelset.o \ signal/sigdelset.o \
sigemptyset.o \ signal/sigemptyset.o \
sigfillset.o \ signal/sigfillset.o \
sigismember.o \ signal/sigismember.o \
sprint.o \ sprint.o \
sscanf.o \ sscanf.o \
stdlib/abort.o \ stdlib/abort.o \
@ -250,7 +250,6 @@ ioctl.o \
ioleast.o \ ioleast.o \
isatty.o \ isatty.o \
kernelinfo.o \ kernelinfo.o \
kill.o \
lchown.o \ lchown.o \
libgen/basename.o \ libgen/basename.o \
libgen/dirname.o \ libgen/dirname.o \
@ -293,11 +292,9 @@ poll/ppoll.o \
popen.o \ popen.o \
preadv.o \ preadv.o \
print.o \ print.o \
psignal.o \
putc.o \ putc.o \
pwd/pwent.o \ pwd/pwent.o \
pwritev.o \ pwritev.o \
raise.o \
readdirents.o \ readdirents.o \
readlinkat.o \ readlinkat.o \
readlink.o \ readlink.o \
@ -318,12 +315,15 @@ setpgid.o \
settermmode.o \ settermmode.o \
setuid.o \ setuid.o \
sfork.o \ sfork.o \
sigaction.o \ signal/kill.o \
SIG_DFL.o \ signal/psignal.o \
SIG_ERR.o \ signal/raise.o \
SIG_IGN.o \ signal/sigaction.o \
signal.o \ signal/SIG_DFL.o \
sigprocmask.o \ signal/SIG_ERR.o \
signal/SIG_IGN.o \
signal/signal.o \
signal/sigprocmask.o \
sleep.o \ sleep.o \
stat.o \ stat.o \
stdio.o \ stdio.o \

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
SIG_DFL.cpp signal/SIG_DFL.cpp
Default signal handler. Default signal handler.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
SIG_ERR.cpp signal/SIG_ERR.cpp
Abort on signal. Abort on signal.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
SIG_IGN.cpp signal/SIG_IGN.cpp
Ignore signal. Ignore signal.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
kill.cpp signal/kill.cpp
Send signal to process. Send signal to process.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
psignal.cpp signal/psignal.cpp
Print signal error condition to stderr. Print signal error condition to stderr.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
raise.cpp signal/raise.cpp
Send signal to current process. Send signal to current process.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigaction.cpp signal/sigaction.cpp
Set the action that happens when a signal is triggered. Set the action that happens when a signal is triggered.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigaddset.cpp signal/sigaddset.cpp
Add a signal to a signal set. Add a signal to a signal set.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigdelset.cpp signal/sigdelset.cpp
Remove a signal from a signal set. Remove a signal from a signal set.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigemptyset.cpp signal/sigemptyset.cpp
Removes all the signals from a signal set. Removes all the signals from a signal set.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigfillset.cpp signal/sigfillset.cpp
Add all signals to a signal set. Add all signals to a signal set.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigismember.cpp signal/sigismember.cpp
Test signal membership in a signal set. Test signal membership in a signal set.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
signal.cpp signal/signal.cpp
Handles the good old unix signals. Handles the good old unix signals.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
sigprocmask.cpp signal/sigprocmask.cpp
Examine and change blocked signals. Examine and change blocked signals.
*******************************************************************************/ *******************************************************************************/

0
libc/sortix/signal/.gitignore vendored Normal file
View File