home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / microcode / osscheme.h < prev    next >
C/C++ Source or Header  |  2000-12-05  |  3KB  |  67 lines

  1. /* -*-C-*-
  2.  
  3. $Id: osscheme.h,v 1.11 2000/12/05 21:23:47 cph Exp $
  4.  
  5. Copyright (c) 1990-2000 Massachusetts Institute of Technology
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at
  10. your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21.  
  22. #ifndef SCM_OSSCHEME_H
  23. #define SCM_OSSCHEME_H
  24.  
  25. #include "outf.h"
  26. #include "os.h"
  27.  
  28. extern Tchannel EXFUN (arg_channel, (int arg_number));
  29.  
  30. extern int option_emacs_subprocess;
  31.  
  32. extern int EXFUN (executing_scheme_primitive_p, (void));
  33.  
  34. extern void EXFUN (debug_edit_flags, (void));
  35. extern void EXFUN (debug_back_trace, (outf_channel));
  36. extern void EXFUN (debug_examine_memory, (long address, CONST char * label));
  37.  
  38. extern void EXFUN (error_out_of_channels, (void));
  39. extern void EXFUN (error_unimplemented_primitive, (void));
  40. extern void EXFUN (error_external_return, (void));
  41. extern void EXFUN (error_out_of_processes, (void));
  42. extern void EXFUN (error_floating_point_exception, (void));
  43.  
  44. extern void EXFUN (termination_eof, (void));
  45. extern void EXFUN (termination_normal, (CONST int));
  46. extern void EXFUN (termination_init_error, (void));
  47. extern void EXFUN (termination_signal, (CONST char * signal_name));
  48. extern void EXFUN (termination_trap, (void));
  49.  
  50. #ifdef __OS2__
  51. extern void EXFUN (request_attention_interrupt, (void));
  52. extern int  EXFUN (test_and_clear_attention_interrupt, (void));
  53. #endif /* __OS2__ */
  54.  
  55. extern void EXFUN (request_character_interrupt, (void));
  56. extern void EXFUN (request_timer_interrupt, (void));
  57. extern void EXFUN (request_suspend_interrupt, (void));
  58. extern void EXFUN (deliver_pending_interrupts, (void));
  59. extern int  EXFUN (pending_interrupts_p, (void));
  60. extern long EXFUN (get_interrupt_mask, (void));
  61. extern void EXFUN (set_interrupt_mask, (long mask));
  62. extern void EXFUN (signal_interrupt_for_primitive, (void));
  63. extern void EXFUN (preserve_interrupt_mask, (void));
  64. extern void EXFUN (back_out_of_primitive, (void));
  65.  
  66. #endif /* SCM_OSSCHEME_H */
  67.