[Python-checkins] CVS: python/dist/src/Include pythonrun.h,2.31,2.32

Jack Jansen python-dev@python.org
Mon, 7 Aug 2000 14:00:45 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory slayer.i.sourceforge.net:/tmp/cvs-serv12077

Modified Files:
	pythonrun.h 
Log Message:
Added a prototype for PyOS_CheckStack (within #ifdef USE_STACKCHECK).


Index: pythonrun.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -r2.31 -r2.32
*** pythonrun.h	2000/07/09 00:55:06	2.31
--- pythonrun.h	2000/08/07 21:00:42	2.32
***************
*** 88,91 ****
--- 88,94 ----
  extern DL_IMPORT(int) (*PyOS_InputHook)(void);
  extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *);
+ #ifdef USE_STACKCHECK
+ int PyOS_CheckStack(void);		/* Check that we aren't overflowing our stack */
+ #endif
  
  #ifdef __cplusplus