setjumph.inc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2000-2002 by Jonas Maebe and other members of the
  5. Free Pascal development team
  6. SetJmp/Longjmp declarations
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. type
  14. jmp_buf = packed record
  15. {$warning FIXME!!!!}
  16. end;
  17. pjmp_buf = ^jmp_buf;
  18. function setjmp(var S : jmp_buf) : longint;
  19. procedure longjmp(var S : jmp_buf;value : longint);
  20. {
  21. $Log$
  22. Revision 1.5 2002-09-15 10:03:04 carl
  23. * make the record packed (just in case)
  24. Revision 1.4 2002/08/10 17:14:36 jonas
  25. * various fixes, mostly changing the names of the modifies registers to
  26. upper case since that seems to be required by the compiler
  27. Revision 1.3 2002/07/26 22:46:17 florian
  28. * interface of system unit for Linux/PowerPC compiles
  29. Revision 1.2 2002/07/26 22:08:38 florian
  30. * comments fixed
  31. Revision 1.1 2002/07/26 22:08:13 florian
  32. + initial dummy implementation
  33. }