xref: /freebsd/include/setjmp.h (revision 5a1d14419a5b620430949a46cb6ee63148a43cb9)
159deaec5SRodney W. Grimes /*-
2*2321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*2321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1990, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  * (c) UNIX System Laboratories, Inc.
759deaec5SRodney W. Grimes  * All or some portions of this file are derived from material licensed
859deaec5SRodney W. Grimes  * to the University of California by American Telephone and Telegraph
959deaec5SRodney W. Grimes  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
1059deaec5SRodney W. Grimes  * the permission of UNIX System Laboratories, Inc.
1159deaec5SRodney W. Grimes  *
1259deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
1359deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
1459deaec5SRodney W. Grimes  * are met:
1559deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1659deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1759deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1859deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1959deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
20f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
2159deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
2259deaec5SRodney W. Grimes  *    without specific prior written permission.
2359deaec5SRodney W. Grimes  *
2459deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2559deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2659deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2759deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2859deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2959deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3059deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3159deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3259deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3359deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3459deaec5SRodney W. Grimes  * SUCH DAMAGE.
3559deaec5SRodney W. Grimes  */
3659deaec5SRodney W. Grimes 
3759deaec5SRodney W. Grimes #ifndef _SETJMP_H_
3859deaec5SRodney W. Grimes #define _SETJMP_H_
3959deaec5SRodney W. Grimes 
404b96f222SMike Barcroft #include <sys/cdefs.h>
414b96f222SMike Barcroft 
427357ff3fSJohn Birrell /* The size of the jmp_buf is machine dependent: */
437357ff3fSJohn Birrell #include <machine/setjmp.h>
4459deaec5SRodney W. Grimes 
4559deaec5SRodney W. Grimes __BEGIN_DECLS
46448f5f73SJilles Tjoelker #if __XSI_VISIBLE >= 600
47bb28f3c2SWarner Losh void	_longjmp(jmp_buf, int) __dead2;
48460378bfSDimitry Andric int	_setjmp(jmp_buf) __returns_twice;
494b96f222SMike Barcroft #endif
504b96f222SMike Barcroft void	longjmp(jmp_buf, int) __dead2;
514b96f222SMike Barcroft #if __BSD_VISIBLE
52bb28f3c2SWarner Losh void	longjmperror(void);
534b96f222SMike Barcroft #endif
54460378bfSDimitry Andric int	setjmp(jmp_buf) __returns_twice;
55448f5f73SJilles Tjoelker #if __POSIX_VISIBLE || __XSI_VISIBLE
564b96f222SMike Barcroft void	siglongjmp(sigjmp_buf, int) __dead2;
57460378bfSDimitry Andric int	sigsetjmp(sigjmp_buf, int) __returns_twice;
584b96f222SMike Barcroft #endif
5959deaec5SRodney W. Grimes __END_DECLS
6059deaec5SRodney W. Grimes 
6159deaec5SRodney W. Grimes #endif /* !_SETJMP_H_ */
62