home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Include / ceval.h < prev    next >
C/C++ Source or Header  |  1994-01-04  |  3KB  |  113 lines

  1. #ifndef Py_CEVAL_H
  2. #define Py_CEVAL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /***********************************************************
  8. Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  9. Amsterdam, The Netherlands.
  10.  
  11.                         All Rights Reserved
  12.  
  13. Permission to use, copy, modify, and distribute this software and its 
  14. documentation for any purpose and without fee is hereby granted, 
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in 
  17. supporting documentation, and that the names of Stichting Mathematisch
  18. Centrum or CWI not be used in advertising or publicity pertaining to
  19. distribution of the software without specific, written prior permission.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  22. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  23. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  24. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  25. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  26. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  27. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  28.  
  29. ******************************************************************/
  30.  
  31. /* Interface to random parts in ceval.c */
  32.  
  33. object *call_object PROTO((object *, object *));
  34.  
  35. object *getglobals PROTO((void));
  36. object *getlocals PROTO((void));
  37. object *getowner PROTO((void));
  38.  
  39. void printtraceback PROTO((object *));
  40. void flushline PROTO((void));
  41.  
  42.  
  43. /* Interface for threads.
  44.  
  45.    A module that plans to do a blocking system call (or something else
  46.    that lasts a long time and doesn't touch Python data) can allow other
  47.    threads to run as follows:
  48.  
  49.     ...preparations here...
  50.     BGN_SAVE
  51.     ...blocking system call here...
  52.     END_SAVE
  53.     ...interpretr result here...
  54.  
  55.    The BGN_SAVE/END_SAVE pair expands to a {}-surrounded block.
  56.    To leave the block in the middle (e.g., with return), you must insert
  57.    a line containing RET_SAVE before the return, e.g.
  58.  
  59.     if (...premature_exit...) {
  60.         RET_SAVE
  61.         err_errno(IOError);
  62.         return NULL;
  63.     }
  64.  
  65.    An alternative is:
  66.  
  67.     RET_SAVE
  68.     if (...premature_exit...) {
  69.         err_errno(IOError);
  70.         return NULL;
  71.     }
  72.     RES_SAVE
  73.  
  74.    For convenience, that the value of 'errno' is restored across
  75.    END_SAVE and RET_SAVE.
  76.  
  77.    WARNING: NEVER NEST CALLS TO BGN_SAVE AND END_SAVE!!!
  78.  
  79.    The function init_save_thread() should be called only from
  80.    initthread() in "threadmodule.c".
  81.  
  82.    Note that not yet all candidates have been converted to use this
  83.    mechanism!
  84. */
  85.  
  86. extern void init_save_thread PROTO((void));
  87. extern object *save_thread PROTO((void));
  88. extern void restore_thread PROTO((object *));
  89.  
  90. #ifdef WITH_THREAD
  91.  
  92. #define BGN_SAVE { \
  93.             object *_save; \
  94.             _save = save_thread();
  95. #define RET_SAVE    restore_thread(_save);
  96. #define RES_SAVE    _save = save_thread();
  97. #define END_SAVE    restore_thread(_save); \
  98.          }
  99.  
  100. #else /* !WITH_THREAD */
  101.  
  102. #define BGN_SAVE {
  103. #define RET_SAVE
  104. #define RES_SAVE
  105. #define END_SAVE }
  106.  
  107. #endif /* !WITH_THREAD */
  108.  
  109. #ifdef __cplusplus
  110. }
  111. #endif
  112. #endif /* !Py_CEVAL_H */
  113.