setjmp.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1991-1999, 2001, 2002 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    The GNU C Library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Lesser General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2.1 of the License, or (at your option) any later version.
  7.    The GNU C Library is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Lesser General Public License for more details.
  11.    You should have received a copy of the GNU Lesser General Public
  12.    License along with the GNU C Library; if not, write to the Free
  13.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14.    02111-1307 USA.  */
  15. /*
  16.  * ISO C99 Standard: 7.13 Nonlocal jumps <setjmp.h>
  17.  */
  18. #ifndef _SETJMP_H
  19. #define _SETJMP_H 1
  20. #include <features.h>
  21. __BEGIN_DECLS
  22. #include <bits/setjmp.h> /* Get `__jmp_buf'.  */
  23. #include <bits/sigset.h> /* Get `__sigset_t'.  */
  24. __BEGIN_NAMESPACE_STD
  25. /* Calling environment, plus possibly a saved signal mask.  */
  26. typedef struct __jmp_buf_tag /* C++ doesn't like tagless structs.  */
  27.   {
  28.     /* NOTE: The machine-dependent definitions of `__sigsetjmp'
  29.        assume that a `jmp_buf' begins with a `__jmp_buf' and that
  30.        `__mask_was_saved' follows it.  Do not move these members
  31.        or add others before it.  */
  32.     __jmp_buf __jmpbuf; /* Calling environment.  */
  33.     int __mask_was_saved; /* Saved the signal mask?  */
  34.     __sigset_t __saved_mask; /* Saved signal mask.  */
  35.   } jmp_buf[1];
  36. /* Store the calling environment in ENV, also saving the signal mask.
  37.    Return 0.  */
  38. extern int setjmp (jmp_buf __env) __THROW;
  39. __END_NAMESPACE_STD
  40. __USING_NAMESPACE_STD(__jmp_buf_tag)
  41. /* Store the calling environment in ENV, also saving the
  42.    signal mask if SAVEMASK is nonzero.  Return 0.
  43.    This is the internal name for `sigsetjmp'.  */
  44. extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask) __THROW;
  45. #ifndef __FAVOR_BSD
  46. /* Store the calling environment in ENV, not saving the signal mask.
  47.    Return 0.  */
  48. extern int _setjmp (struct __jmp_buf_tag __env[1]) __THROW;
  49. /* Do not save the signal mask.  This is equivalent to the `_setjmp'
  50.    BSD function.  */
  51. # define setjmp(env) _setjmp (env)
  52. #else
  53. /* We are in 4.3 BSD-compatibility mode in which `setjmp'
  54.    saves the signal mask like `sigsetjmp (ENV, 1)'.  We have to
  55.    define a macro since ISO C says `setjmp' is one.  */
  56. # define setjmp(env) setjmp (env)
  57. #endif /* Favor BSD.  */
  58. __BEGIN_NAMESPACE_STD
  59. /* Jump to the environment saved in ENV, making the
  60.    `setjmp' call there return VAL, or 1 if VAL is 0.  */
  61. extern void longjmp (struct __jmp_buf_tag __env[1], int __val)
  62.      __THROW __attribute__ ((__noreturn__));
  63. __END_NAMESPACE_STD
  64. #if defined __USE_BSD || defined __USE_XOPEN
  65. /* Same.  Usually `_longjmp' is used with `_setjmp', which does not save
  66.    the signal mask.  But it is how ENV was saved that determines whether
  67.    `longjmp' restores the mask; `_longjmp' is just an alias.  */
  68. extern void _longjmp (struct __jmp_buf_tag __env[1], int __val)
  69.      __THROW __attribute__ ((__noreturn__));
  70. #endif
  71. #ifdef __USE_POSIX
  72. /* Use the same type for `jmp_buf' and `sigjmp_buf'.
  73.    The `__mask_was_saved' flag determines whether
  74.    or not `longjmp' will restore the signal mask.  */
  75. typedef struct __jmp_buf_tag sigjmp_buf[1];
  76. /* Store the calling environment in ENV, also saving the
  77.    signal mask if SAVEMASK is nonzero.  Return 0.  */
  78. # define sigsetjmp(env, savemask) __sigsetjmp (env, savemask)
  79. /* Jump to the environment saved in ENV, making the
  80.    sigsetjmp call there return VAL, or 1 if VAL is 0.
  81.    Restore the signal mask if that sigsetjmp call saved it.
  82.    This is just an alias `longjmp'.  */
  83. extern void siglongjmp (sigjmp_buf __env, int __val)
  84.      __THROW __attribute__ ((__noreturn__));
  85. #endif /* Use POSIX.  */
  86. __END_DECLS
  87. #endif /* setjmp.h  */