home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / setjmp.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  2KB  |  68 lines

  1. /* 
  2.  * setjmp.h
  3.  *
  4.  * Declarations supporting setjmp and longjump, a method for avoiding
  5.  * the normal function call return sequence. (Bleah!)
  6.  *
  7.  * This file is part of the Mingw32 package.
  8.  *
  9.  * Contributors:
  10.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  11.  *
  12.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  13.  *
  14.  *  This source code is offered for use in the public domain. You may
  15.  *  use, modify or distribute it freely.
  16.  *
  17.  *  This code is distributed in the hope that it will be useful but
  18.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  19.  *  DISCLAMED. This includes but is not limited to warranties of
  20.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21.  *
  22.  * $Revision: 2.3 $
  23.  * $Author: colin $
  24.  * $Date: 1998/05/18 18:44:39 $
  25.  *
  26.  */
  27.  
  28. #ifndef _SETJMP_H_
  29. #define _SETJMP_H_
  30.  
  31. #ifndef RC_INVOKED
  32.  
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36.  
  37. /*
  38.  * The buffer used by setjmp to store the information used by longjmp
  39.  * to perform it's evil goto-like work. The size of this buffer was
  40.  * determined through experimentation; it's contents are a mystery.
  41.  * NOTE: This was determined on an i386 (actually a Pentium). The
  42.  *       contents could be different on an Alpha or something else.
  43.  */
  44. typedef char    jmp_buf[32];
  45.  
  46. /*
  47.  * The function provided by CRTDLL which appears to do the actual work
  48.  * of setjmp.
  49.  */
  50. int    _setjmp (char* jbuf);
  51.  
  52. #define    setjmp(jbuf) _setjmp(jbuf)
  53.  
  54. /*
  55.  * Return to the last setjmp call and act as if setjmp had returned
  56.  * nVal (which had better be non-zero!).
  57.  */
  58. void    longjmp (char* jbuf, int nVal);
  59.  
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63.  
  64. #endif    /* Not RC_INVOKED */
  65.  
  66. #endif    /* Not _SETJMP_H_ */
  67.  
  68.