gpcheck.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Copyright (C) 1992, 1994 Aladdin Enterprises. All rights reserved.
  2. This software is provided AS-IS with no warranty, either express or
  3. implied.
  4. This software is distributed under license and may not be copied,
  5. modified or distributed except as expressly authorized under the terms
  6. of the license contained in the file LICENSE in this distribution.
  7. For more information about licensing, please refer to
  8. http://www.ghostscript.com/licensing/. For information on
  9. commercial licensing, go to http://www.artifex.com/licensing/ or
  10. contact Artifex Software, Inc., 101 Lucas Valley Road #110,
  11. San Rafael, CA 94903, U.S.A., +1(415)492-9861.
  12. */
  13. /* $Id: gpcheck.h,v 1.9 2004/08/13 12:59:03 stefan Exp $ */
  14. /* Interrupt check interface */
  15. #ifndef gpcheck_INCLUDED
  16. # define gpcheck_INCLUDED
  17. /*
  18. * On some platforms, the interpreter must check periodically for user-
  19. * initiated actions. (Eventually, this may be extended to all platforms,
  20. * to handle multi-tasking through the 'context' facility.) Routines that
  21. * run for a long time must periodically call gp_check_interrupts(), and
  22. * if it returns true, must clean up whatever they are doing and return an
  23. * e_interrupted (or gs_error_interrupted) exceptional condition.
  24. * The return_if_interrupt macro provides a convenient way to do this.
  25. *
  26. * On platforms that require an interrupt check, the makefile defines
  27. * a symbol CHECK_INTERRUPTS. Currently this is only the Microsoft
  28. * Windows platform.
  29. */
  30. int gs_return_check_interrupt(const gs_memory_t *mem, int code);
  31. #ifdef CHECK_INTERRUPTS
  32. int gp_check_interrupts(const gs_memory_t *mem);
  33. # define process_interrupts(mem) discard(gp_check_interrupts(mem))
  34. # define return_if_interrupt(mem)\
  35. { int icode_ = gp_check_interrupts(mem); \
  36. if ( icode_ )\
  37. return gs_note_error((icode_ > 0 ? gs_error_interrupt : icode_));\
  38. }
  39. # define return_check_interrupt(mem, code) \
  40. return gs_return_check_interrupt(mem, code)
  41. # define set_code_on_interrupt(mem, pcode) \
  42. if (*(pcode) == 0)\
  43. *(pcode) = (gp_check_interrupts(mem) != 0) ? gs_error_interrupt : 0;
  44. #else
  45. # define gp_check_interrupts(mem) 0
  46. # define process_interrupts(mem) DO_NOTHING
  47. # define return_if_interrupt(mem) DO_NOTHING
  48. # define return_check_interrupt(mem, code) \
  49. return (code)
  50. # define set_code_on_interrupt(mem, code) DO_NOTHING
  51. #endif
  52. #endif /* gpcheck_INCLUDED */