xref: /openbsd/include/setjmp.h (revision fbe95b35)
1*fbe95b35Sguenther /*	$OpenBSD: setjmp.h,v 1.7 2016/05/23 00:18:56 guenther Exp $	*/
2df930be7Sderaadt /*	$NetBSD: setjmp.h,v 1.11 1994/12/20 10:35:44 cgd Exp $	*/
3df930be7Sderaadt 
4df930be7Sderaadt /*-
5df930be7Sderaadt  * Copyright (c) 1990, 1993
6df930be7Sderaadt  *	The Regents of the University of California.  All rights reserved.
7df930be7Sderaadt  * (c) UNIX System Laboratories, Inc.
8df930be7Sderaadt  * All or some portions of this file are derived from material licensed
9df930be7Sderaadt  * to the University of California by American Telephone and Telegraph
10df930be7Sderaadt  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
11df930be7Sderaadt  * the permission of UNIX System Laboratories, Inc.
12df930be7Sderaadt  *
13df930be7Sderaadt  * Redistribution and use in source and binary forms, with or without
14df930be7Sderaadt  * modification, are permitted provided that the following conditions
15df930be7Sderaadt  * are met:
16df930be7Sderaadt  * 1. Redistributions of source code must retain the above copyright
17df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer.
18df930be7Sderaadt  * 2. Redistributions in binary form must reproduce the above copyright
19df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer in the
20df930be7Sderaadt  *    documentation and/or other materials provided with the distribution.
21e33d3bd3Smillert  * 3. Neither the name of the University nor the names of its contributors
22df930be7Sderaadt  *    may be used to endorse or promote products derived from this software
23df930be7Sderaadt  *    without specific prior written permission.
24df930be7Sderaadt  *
25df930be7Sderaadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26df930be7Sderaadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27df930be7Sderaadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28df930be7Sderaadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29df930be7Sderaadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30df930be7Sderaadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31df930be7Sderaadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32df930be7Sderaadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33df930be7Sderaadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34df930be7Sderaadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35df930be7Sderaadt  * SUCH DAMAGE.
36df930be7Sderaadt  *
37df930be7Sderaadt  *	@(#)setjmp.h	8.2 (Berkeley) 1/21/94
38df930be7Sderaadt  */
39df930be7Sderaadt 
40df930be7Sderaadt #ifndef _SETJMP_H_
41df930be7Sderaadt #define _SETJMP_H_
42df930be7Sderaadt 
4352a0e603Smillert #include <sys/cdefs.h>
44df930be7Sderaadt #include <machine/setjmp.h>
45df930be7Sderaadt 
4652a0e603Smillert #if __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE
47df930be7Sderaadt typedef long sigjmp_buf[_JBLEN + 1];
4852a0e603Smillert #endif /* __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE */
49df930be7Sderaadt 
50df930be7Sderaadt typedef long jmp_buf[_JBLEN];
51df930be7Sderaadt 
52df930be7Sderaadt __BEGIN_DECLS
53ca958bc2Sbrad __returns_twice int	setjmp(jmp_buf);
54ca958bc2Sbrad __dead void	longjmp(jmp_buf, int);
55df930be7Sderaadt 
5652a0e603Smillert #if __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE
57ca958bc2Sbrad __returns_twice int	sigsetjmp(sigjmp_buf, int);
58ca958bc2Sbrad __dead void	siglongjmp(sigjmp_buf, int);
5952a0e603Smillert #endif /* __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE */
60df930be7Sderaadt 
6152a0e603Smillert #if __BSD_VISIBLE || __XPG_VISIBLE
62ca958bc2Sbrad __returns_twice int	_setjmp(jmp_buf);
63ca958bc2Sbrad __dead void	_longjmp(jmp_buf, int);
6452a0e603Smillert #endif /* __BSD_VISIBLE || __XPG_VISIBLE */
65df930be7Sderaadt __END_DECLS
66df930be7Sderaadt 
67df930be7Sderaadt #endif /* !_SETJMP_H_ */
68