sighndh.inc 958 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Jonas Maebe,
  5. member of the Free Pascal development team.
  6. Sigcontext and Sigaction
  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. {$packrecords C}
  14. type
  15. PSigContext = ^TSigContext;
  16. TSigContext = record
  17. end;
  18. {
  19. $Log$
  20. Revision 1.2 2005-02-14 17:13:31 peter
  21. * truncate log
  22. Revision 1.1 2005/02/13 22:13:20 peter
  23. * get solaris back in shape
  24. Revision 1.1 2005/01/30 18:01:15 peter
  25. * signal cleanup for linux
  26. * sigactionhandler instead of tsigaction for bsds
  27. * sigcontext moved to cpu dir
  28. }