1*f14fb602SLionel Sambuc /* $NetBSD: setjmp.h,v 1.26 2011/11/05 09:27:06 joerg Exp $ */ 22fe8fb19SBen Gras 32fe8fb19SBen Gras /*- 42fe8fb19SBen Gras * Copyright (c) 1990, 1993 52fe8fb19SBen Gras * The Regents of the University of California. All rights reserved. 62fe8fb19SBen Gras * (c) UNIX System Laboratories, Inc. 72fe8fb19SBen Gras * All or some portions of this file are derived from material licensed 82fe8fb19SBen Gras * to the University of California by American Telephone and Telegraph 92fe8fb19SBen Gras * Co. or Unix System Laboratories, Inc. and are reproduced herein with 102fe8fb19SBen Gras * the permission of UNIX System Laboratories, Inc. 119865aeaaSBen Gras * 122fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without 132fe8fb19SBen Gras * modification, are permitted provided that the following conditions 142fe8fb19SBen Gras * are met: 152fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright 162fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer. 172fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright 182fe8fb19SBen Gras * notice, this list of conditions and the following disclaimer in the 192fe8fb19SBen Gras * documentation and/or other materials provided with the distribution. 202fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors 212fe8fb19SBen Gras * may be used to endorse or promote products derived from this software 222fe8fb19SBen Gras * without specific prior written permission. 239865aeaaSBen Gras * 242fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 252fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 262fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 272fe8fb19SBen Gras * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 282fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 292fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 302fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 312fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 322fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 332fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 342fe8fb19SBen Gras * SUCH DAMAGE. 359865aeaaSBen Gras * 362fe8fb19SBen Gras * @(#)setjmp.h 8.2 (Berkeley) 1/21/94 379865aeaaSBen Gras */ 389865aeaaSBen Gras 392fe8fb19SBen Gras #ifndef _SETJMP_H_ 402fe8fb19SBen Gras #define _SETJMP_H_ 419865aeaaSBen Gras 422fe8fb19SBen Gras #include <sys/featuretest.h> 432fe8fb19SBen Gras 442fe8fb19SBen Gras #include <machine/setjmp.h> 452fe8fb19SBen Gras 462fe8fb19SBen Gras #ifndef _JB_ATTRIBUTES 472fe8fb19SBen Gras #define _JB_ATTRIBUTES /**/ 482fe8fb19SBen Gras #else 492fe8fb19SBen Gras #endif 502fe8fb19SBen Gras #ifndef _BSD_JBSLOT_T_ 512fe8fb19SBen Gras #define _BSD_JBSLOT_T_ long 529865aeaaSBen Gras #endif 539865aeaaSBen Gras 542fe8fb19SBen Gras #if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \ 552fe8fb19SBen Gras defined(_NETBSD_SOURCE) 562fe8fb19SBen Gras typedef _BSD_JBSLOT_T_ sigjmp_buf[_JBLEN + 1] _JB_ATTRIBUTES; 572fe8fb19SBen Gras #endif /* not ANSI */ 589865aeaaSBen Gras 592fe8fb19SBen Gras typedef _BSD_JBSLOT_T_ jmp_buf[_JBLEN] _JB_ATTRIBUTES; 609865aeaaSBen Gras 612fe8fb19SBen Gras #include <sys/cdefs.h> 629865aeaaSBen Gras 632fe8fb19SBen Gras __BEGIN_DECLS 642fe8fb19SBen Gras #ifndef __LIBC12_SOURCE__ 65*f14fb602SLionel Sambuc int setjmp(jmp_buf) __RENAME(__setjmp14) __returns_twice; 662fe8fb19SBen Gras void longjmp(jmp_buf, int) __RENAME(__longjmp14) __dead; 672fe8fb19SBen Gras 682fe8fb19SBen Gras #if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \ 692fe8fb19SBen Gras defined(_NETBSD_SOURCE) 70*f14fb602SLionel Sambuc int sigsetjmp(sigjmp_buf, int) __RENAME(__sigsetjmp14) __returns_twice; 712fe8fb19SBen Gras void siglongjmp(sigjmp_buf, int) __RENAME(__siglongjmp14) __dead; 722fe8fb19SBen Gras #endif /* not ANSI */ 732fe8fb19SBen Gras #endif /* __LIBC12_SOURCE__ */ 742fe8fb19SBen Gras 752fe8fb19SBen Gras #if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE) 76*f14fb602SLionel Sambuc int _setjmp(jmp_buf) __returns_twice; 772fe8fb19SBen Gras void _longjmp(jmp_buf, int) __dead; 789865aeaaSBen Gras #endif 799865aeaaSBen Gras 802fe8fb19SBen Gras #if defined(_NETBSD_SOURCE) 812fe8fb19SBen Gras void longjmperror(void); 822fe8fb19SBen Gras #endif 832fe8fb19SBen Gras __END_DECLS 849865aeaaSBen Gras 852fe8fb19SBen Gras #endif /* !_SETJMP_H_ */ 86