epoc32/include/stdapis/sys/signal.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files
williamr@2
     1
/*-
williamr@2
     2
 * Copyright (c) 1982, 1986, 1989, 1991, 1993
williamr@2
     3
 *	The Regents of the University of California.  All rights reserved.
williamr@2
     4
 * (c) UNIX System Laboratories, Inc.
williamr@2
     5
 * All or some portions of this file are derived from material licensed
williamr@2
     6
 * to the University of California by American Telephone and Telegraph
williamr@2
     7
 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
williamr@2
     8
 * the permission of UNIX System Laboratories, Inc.
williamr@2
     9
 *
williamr@2
    10
 * Redistribution and use in source and binary forms, with or without
williamr@2
    11
 * modification, are permitted provided that the following conditions
williamr@2
    12
 * are met:
williamr@2
    13
 * 1. Redistributions of source code must retain the above copyright
williamr@2
    14
 *    notice, this list of conditions and the following disclaimer.
williamr@2
    15
 * 2. Redistributions in binary form must reproduce the above copyright
williamr@2
    16
 *    notice, this list of conditions and the following disclaimer in the
williamr@2
    17
 *    documentation and/or other materials provided with the distribution.
williamr@2
    18
 * 4. Neither the name of the University nor the names of its contributors
williamr@2
    19
 *    may be used to endorse or promote products derived from this software
williamr@2
    20
 *    without specific prior written permission.
williamr@2
    21
 *
williamr@2
    22
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
williamr@2
    23
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
williamr@2
    24
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
williamr@2
    25
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
williamr@2
    26
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
williamr@2
    27
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
williamr@2
    28
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
williamr@2
    29
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
williamr@2
    30
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
williamr@2
    31
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
williamr@2
    32
 * SUCH DAMAGE.
williamr@2
    33
 *
williamr@2
    34
 *	@(#)signal.h	8.4 (Berkeley) 5/4/95
williamr@2
    35
 * $FreeBSD: src/sys/sys/signal.h,v 1.45 2004/06/11 11:43:46 phk Exp $
williamr@2
    36
 */
williamr@2
    37
williamr@2
    38
#ifndef _SYS_SIGNAL_H_
williamr@2
    39
#define	_SYS_SIGNAL_H_
williamr@2
    40
williamr@2
    41
#include <sys/cdefs.h>
williamr@2
    42
#include <sys/_types.h>
williamr@2
    43
#include <sys/_sigset.h>
williamr@2
    44
williamr@2
    45
#include <machine/signal.h>	/* sig_atomic_t; trap codes; sigcontext */
williamr@2
    46
williamr@2
    47
/*
williamr@2
    48
 * System defined signals.
williamr@2
    49
 */
williamr@2
    50
#define	SIGHUP		1	/* hangup */
williamr@2
    51
#define	SIGINT		2	/* interrupt */
williamr@2
    52
#define	SIGQUIT		3	/* quit */
williamr@2
    53
#define	SIGILL		4	/* illegal instr. (not reset when caught) */
williamr@2
    54
#define	SIGTRAP		5	/* trace trap (not reset when caught) */
williamr@2
    55
#define	SIGABRT		6	/* abort() */
williamr@2
    56
#define	SIGIOT		SIGABRT	/* compatibility */
williamr@2
    57
#define	SIGEMT		7	/* EMT instruction */
williamr@2
    58
#define	SIGFPE		8	/* floating point exception */
williamr@2
    59
#define	SIGKILL		9	/* kill (cannot be caught or ignored) */
williamr@2
    60
#define	SIGBUS		10	/* bus error */
williamr@2
    61
#define	SIGSEGV		11	/* segmentation violation */
williamr@2
    62
#define	SIGSYS		12	/* non-existent system call invoked */
williamr@2
    63
#define	SIGPIPE		13	/* write on a pipe with no one to read it */
williamr@2
    64
#define	SIGALRM		14	/* alarm clock */
williamr@2
    65
#define	SIGTERM		15	/* software termination signal from kill */
williamr@2
    66
#define	SIGURG		16	/* urgent condition on IO channel */
williamr@2
    67
#define	SIGSTOP		17	/* sendable stop signal not from tty */
williamr@2
    68
#define	SIGTSTP		18	/* stop signal from tty */
williamr@2
    69
#define	SIGCONT		19	/* continue a stopped process */
williamr@2
    70
#define	SIGCHLD		20	/* to parent on child stop or exit */
williamr@2
    71
#define	SIGTTIN		21	/* to readers pgrp upon background tty read */
williamr@2
    72
#define	SIGTTOU		22	/* like TTIN if (tp->t_local&LTOSTOP) */
williamr@2
    73
#define	SIGIO		23	/* input/output possible signal */
williamr@2
    74
#define	SIGXCPU		24	/* exceeded CPU time limit */
williamr@2
    75
#define	SIGXFSZ		25	/* exceeded file size limit */
williamr@2
    76
#define	SIGVTALRM	26	/* virtual time alarm */
williamr@2
    77
#define	SIGPROF		27	/* profiling time alarm */
williamr@2
    78
#define	SIGWINCH	28	/* window size changes */
williamr@2
    79
#define	SIGINFO		29	/* information request */
williamr@2
    80
#define	SIGUSR1		30	/* user defined signal 1 */
williamr@2
    81
#define	SIGUSR2		31	/* user defined signal 2 */
williamr@2
    82
#define	SIGTHR		32	/* Thread interrupt. */
williamr@2
    83
williamr@2
    84
/*
williamr@2
    85
 * XXX missing SIGRTMIN, SIGRTMAX.
williamr@2
    86
 */
williamr@2
    87
williamr@2
    88
#define	SIG_DFL		((__sighandler_t *)0)
williamr@2
    89
#define	SIG_IGN		((__sighandler_t *)1)
williamr@2
    90
#define	SIG_ERR		((__sighandler_t *)-1)
williamr@2
    91
/*
williamr@2
    92
 * XXX missing SIG_HOLD.
williamr@2
    93
 */
williamr@2
    94
williamr@2
    95
/*-
williamr@2
    96
 * Type of a signal handling function.
williamr@2
    97
 *
williamr@2
    98
 * Language spec sez signal handlers take exactly one arg, even though we
williamr@2
    99
 * actually supply three.  Ugh!
williamr@2
   100
 *
williamr@2
   101
 * We don't try to hide the difference by leaving out the args because
williamr@2
   102
 * that would cause warnings about conformant programs.  Nonconformant
williamr@2
   103
 * programs can avoid the warnings by casting to (__sighandler_t *) or
williamr@2
   104
 * sig_t before calling signal() or assigning to sa_handler or sv_handler.
williamr@2
   105
 *
williamr@2
   106
 * The kernel should reverse the cast before calling the function.  It
williamr@2
   107
 * has no way to do this, but on most machines 1-arg and 3-arg functions
williamr@2
   108
 * have the same calling protocol so there is no problem in practice.
williamr@2
   109
 * A bit in sa_flags could be used to specify the number of args.
williamr@2
   110
 */
williamr@2
   111
typedef	void __sighandler_t(int);
williamr@2
   112
williamr@2
   113
#if __POSIX_VISIBLE || __XSI_VISIBLE
williamr@2
   114
#ifndef _SIGSET_T_DECLARED
williamr@2
   115
#define	_SIGSET_T_DECLARED
williamr@2
   116
typedef	__sigset_t	sigset_t;
williamr@2
   117
#endif
williamr@2
   118
#endif
williamr@2
   119
williamr@2
   120
williamr@2
   121
#if __POSIX_VISIBLE || __XSI_VISIBLE
williamr@2
   122
struct __siginfo;
williamr@2
   123
williamr@2
   124
/*
williamr@2
   125
 * Signal vector "template" used in sigaction call.
williamr@2
   126
 */
williamr@2
   127
struct sigaction {
williamr@2
   128
	union {
williamr@2
   129
		void    (*__sa_handler)(int);
williamr@2
   130
		void    (*__sa_sigaction)(int, struct __siginfo *, void *);
williamr@2
   131
	} __sigaction_u;		/* signal handler */
williamr@2
   132
	int	sa_flags;		/* see signal options below */
williamr@2
   133
	sigset_t sa_mask;		/* signal mask to apply */
williamr@2
   134
};
williamr@2
   135
williamr@2
   136
#define	sa_handler	__sigaction_u.__sa_handler
williamr@2
   137
#endif
williamr@2
   138
williamr@2
   139
#if __POSIX_VISIBLE || __XSI_VISIBLE
williamr@2
   140
#define	SA_NOCLDSTOP	0x0008	/* do not generate SIGCHLD on child stop */
williamr@2
   141
#endif /* __POSIX_VISIBLE || __XSI_VISIBLE */
williamr@2
   142
williamr@2
   143
#if __XSI_VISIBLE
williamr@2
   144
#define	SA_ONSTACK	0x0001	/* take signal on signal stack */
williamr@2
   145
#define	SA_RESTART	0x0002	/* restart system call on signal return */
williamr@2
   146
#define	SA_RESETHAND	0x0004	/* reset to SIG_DFL when taking signal */
williamr@2
   147
#define	SA_NODEFER	0x0010	/* don't mask the signal we're delivering */
williamr@2
   148
#define	SA_NOCLDWAIT	0x0020	/* don't keep zombies around */
williamr@2
   149
#define	SA_SIGINFO	0x0040	/* signal handler with SA_SIGINFO args */
williamr@2
   150
#endif
williamr@2
   151
williamr@2
   152
#if __BSD_VISIBLE
williamr@2
   153
#define	NSIG		32	/* number of old signals (counting 0) */
williamr@2
   154
#endif
williamr@2
   155
williamr@2
   156
#endif /* !_SYS_SIGNAL_H_ */