4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
25 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
26 * Use is subject to license terms.
29 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
30 /* All Rights Reserved */
32 #ifndef _SYS_UCONTEXT_H
33 #define _SYS_UCONTEXT_H
35 #include <sys/feature_tests.h>
37 #include <sys/types.h>
38 #include <sys/mcontext.h>
39 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
40 #include <sys/signal.h>
48 * Inclusion of <sys/signal.h> for sigset_t and stack_t definitions
49 * breaks XPG4v2 namespace. Therefore we must duplicate the defines
50 * for these types here when _XPG4_2 is defined.
53 #if defined(_XPG4_2) && !defined(__EXTENSIONS__)
56 typedef struct { /* signal set type */
57 unsigned int __sigbits
[4];
59 #endif /* _SIGSET_T */
70 #endif /* defined(_XPG4_2) && !defined(__EXTENSIONS__) */
72 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
73 typedef struct ucontext ucontext_t
;
75 typedef struct __ucontext ucontext_t
;
76 #endif /* !defined(_XPG4_2) || defined(__EXTENSIONS__) */
78 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
87 mcontext_t uc_mcontext
;
92 #endif /* __sparcv9 */
97 /* Kernel view of user ILP32 ucontext structure */
99 typedef struct ucontext32
{
104 mcontext32_t uc_mcontext
;
105 int32_t uc_filler
[23];
109 extern void ucontext_32ton(const ucontext32_t
*, ucontext_t
*,
110 const struct fq32
*, struct _fq
*);
111 extern void fpuregset_nto32(const fpregset_t
*, fpregset32_t
*, struct fq32
*);
114 #endif /* _SYSCALL32 */
116 #if !defined(_XPG4_2) || defined(__EXTENSIONS__)
123 * values for uc_flags
124 * these are implementation dependent flags, that should be hidden
125 * from the user interface, defining which elements of ucontext
126 * are valid, and should be restored on call to setcontext
129 #define UC_SIGMASK 0x01
130 #define UC_STACK 0x02
133 #define UC_FPU UC_MAU
137 #define UC_MCONTEXT (UC_CPU|UC_FPU|UC_ASR)
140 * UC_ALL specifies the default context
143 #define UC_ALL (UC_SIGMASK|UC_STACK|UC_MCONTEXT)
144 #endif /* !defined(_XPG4_2) || defined(__EXTENSIONS__) */
147 extern void savecontext(ucontext_t
*, const k_sigset_t
*);
148 extern void restorecontext(ucontext_t
*);
151 extern void savecontext32(ucontext32_t
*, const k_sigset_t
*, struct fq32
*);
159 #endif /* _SYS_UCONTEXT_H */