mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
b062f051ec
1998-04-23 07:31 H.J. Lu <hjl@gnu.org> * resolv/inet_addr.c (inet_aton): Use __strtoul_internal to check overflow. * resolv/Makefile (tests): New, add tst-aton. * resolv/tst-aton.c: New file. 1998-04-29 Ulrich Drepper <drepper@cygnus.com> * sysdeps/sparc/sparc32/dl-machine.h (WEAKADDR): Add missing semicolon. * sysdeps/unix/sysv/linux/alpha/bits/signum.h: Add SIGCLD definition.
75 lines
2.2 KiB
C
75 lines
2.2 KiB
C
/* Signal number definitions. Linux/Alpha version.
|
|
Copyright (C) 1996, 1997, 1998 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 Library General Public License as
|
|
published by the Free Software Foundation; either version 2 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#ifdef _SIGNAL_H
|
|
|
|
/* Fake signal functions. */
|
|
#define SIG_ERR ((__sighandler_t) -1) /* Error return. */
|
|
#define SIG_DFL ((__sighandler_t) 0) /* Default action. */
|
|
#define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
|
|
|
|
#ifdef __USE_UNIX98
|
|
# define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
|
|
#endif
|
|
|
|
/*
|
|
* Linux/AXP has different signal numbers that Linux/i386: I'm trying
|
|
* to make it OSF/1 binary compatible, at least for normal binaries.
|
|
*/
|
|
#define SIGHUP 1
|
|
#define SIGINT 2
|
|
#define SIGQUIT 3
|
|
#define SIGILL 4
|
|
#define SIGTRAP 5
|
|
#define SIGABRT 6
|
|
#define SIGEMT 7
|
|
#define SIGFPE 8
|
|
#define SIGKILL 9
|
|
#define SIGBUS 10
|
|
#define SIGSEGV 11
|
|
#define SIGSYS 12
|
|
#define SIGPIPE 13
|
|
#define SIGALRM 14
|
|
#define SIGTERM 15
|
|
#define SIGURG 16
|
|
#define SIGSTOP 17
|
|
#define SIGTSTP 18
|
|
#define SIGCONT 19
|
|
#define SIGCHLD 20
|
|
#define SIGCLD SIGCHLD
|
|
#define SIGTTIN 21
|
|
#define SIGTTOU 22
|
|
#define SIGIO 23
|
|
#define SIGXCPU 24
|
|
#define SIGXFSZ 25
|
|
#define SIGVTALRM 26
|
|
#define SIGPROF 27
|
|
#define SIGWINCH 28
|
|
#define SIGINFO 29
|
|
#define SIGUSR1 30
|
|
#define SIGUSR2 31
|
|
|
|
#define SIGPOLL SIGIO
|
|
#define SIGPWR SIGINFO
|
|
#define SIGIOT SIGABRT
|
|
|
|
#define _NSIG 64 /* Biggest signal number + 1. */
|
|
|
|
#endif /* <signal.h> included. */
|