]> pd.if.org Git - pdclib/blob - platform/example_cygwin/includes/signal.h
Removed the header include guard 'optimization'.
[pdclib] / platform / example_cygwin / includes / signal.h
1 /* $Id$ */
2
3 /* 7.14 Signal handling <string.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_SIGNAL_H
10 #define _PDCLIB_SIGNAL_H _PDCLIB_SIGNAL_H
11
12 #include <_PDCLIB_config.h>
13
14 /* Signals ------------------------------------------------------------------ */
15
16 /* A word on signals, to the people using PDCLib in their OS projects.
17
18    The definitions of the C standard leave about everything that *could* be
19    useful to be "implementation defined". Without additional, non-standard
20    arrangements, it is not possible to turn them into a useful tool.
21
22    This example implementation chose to "not generate any of these signals,
23    except as a result of explicit calls to the raise function", which is
24    allowed by the standard but of course does nothing for the usefulness of
25    <signal.h>.
26
27    A useful signal handling would:
28    1) make signal() a system call that registers the signal handler with the OS
29    2) make raise() a system call triggering an OS signal to the running process
30    3) make provisions that further signals of the same type are blocked until
31       the signal handler returns (optional for SIGILL)
32 */
33
34 /* These are the values used by Linux. */
35
36 /* Abnormal termination / abort() */
37 #define SIGABRT 6
38 /* Arithmetic exception / division by zero / overflow */
39 #define SIGFPE  8
40 /* Illegal instruction */
41 #define SIGILL  4
42 /* Interactive attention signal */
43 #define SIGINT  2
44 /* Invalid memory access */
45 #define SIGSEGV 11
46 /* Termination request */
47 #define SIGTERM 15
48
49 /* The following should be defined to pointer values that could NEVER point to
50    a valid signal handler function. (They are used as special arguments to
51    signal().) Again, these are the values used by Linux.
52 */
53 #define SIG_DFL (void (*)( int ))0
54 #define SIG_ERR (void (*)( int ))-1
55 #define SIG_IGN (void (*)( int ))1
56
57 typedef _PDCLIB_sig_atomic sig_atomic_t;
58
59 /* Installs a signal handler "func" for the given signal.
60    A signal handler is a function that takes an integer as argument (the signal
61    number) and returns void.
62
63    Note that a signal handler can do very little else than:
64    1) assign a value to a static object of type "volatile sig_atomic_t",
65    2) call signal() with the value of sig equal to the signal received,
66    3) call _Exit(),
67    4) call abort().
68    Virtually everything else is undefind.
69
70    The signal() function returns the previous installed signal handler, which
71    at program start may be SIG_DFL or SIG_ILL. (This implementation uses
72    SIG_DFL for all handlers.) If the request cannot be honored, SIG_ERR is
73    returned and errno is set to an unspecified positive value.
74 */
75 void (*signal( int sig, void (*func)( int ) ) )( int );
76
77 /* Raises the given signal (executing the registered signal handler with the
78    given signal number as parameter).
79    This implementation does not prevent further signals of the same time from
80    occuring, but executes signal( sig, SIG_DFL ) before entering the signal
81    handler (i.e., a second signal before the signal handler re-registers itself
82    or SIG_IGN will end the program).
83    Returns zero if successful, nonzero otherwise. */
84 int raise( int sig );
85
86 #endif
87