]>
git.saurik.com Git - apple/xnu.git/blob - bsd/ppc/signal.h
2 * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1992, 1993 NeXT Computer, Inc.
32 #ifndef _PPC_SIGNAL_H_
33 #define _PPC_SIGNAL_H_ 1
35 #include <sys/cdefs.h>
39 typedef int sig_atomic_t;
41 #include <sys/appleapiopts.h>
43 #ifdef __APPLE_API_OBSOLETE
45 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
47 #define __need_struct_sigcontext
48 #define __need_struct_sigcontext32
49 #define __need_struct_sigcontext64
50 #include <ppc/_structs.h>
53 * Machine-dependant flags used in sigvec call.
55 #define SV_SAVE_REGS 0x1000 /* Save all regs in sigcontext */
58 * regs_saved_t -- Describes which registers beyond what the kernel cares
59 * about are saved to and restored from this sigcontext.
61 * The default is REGS_SAVED_CALLER, only the caller saved registers
62 * are saved. If the SV_SAVE_REGS flag was set when the signal
63 * handler was registered with sigvec() then all the registers will be
64 * saved in the sigcontext, and REGS_SAVED_ALL will be set. The C
65 * library uses REGS_SAVED_NONE in order to quickly restore kernel
66 * state during a longjmp().
69 REGS_SAVED_NONE
, /* Only kernel managed regs restored */
70 REGS_SAVED_CALLER
, /* "Caller saved" regs: rpc, a0-a7,
71 t0-t4, at, lk0-lk1, xt1-xt20,
73 REGS_SAVED_ALL
/* All registers */
76 #endif /* (_POSIX_C_SOURCE && !_DARWIN_C_SOURCE) */
78 #endif /* __APPLE_API_OBSOLETE */
80 #endif /* _ANSI_SOURCE */
82 #endif /* _PPC_SIGNAL_H_ */