2000-11-05 19:52 GMT+1 Maurilio Longo <maurilio.longo@libero.it>

This commit is contained in:
Maurilio Longo
2000-11-05 18:58:56 +00:00
parent 121083cad0
commit 73bfbd3208
2 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
2000-11-05 19:52 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* source/vm/hvm.c
* I keep getting exceptions during class use due to harbour stack management,
so, until all code is checked and made compatible with harbour stack I have
increased
STACK_INITHB_ITEMS to 2000 (from 100)
STACK_EXPANDHB_ITEMS to 200 (20)
This is only a temporary workaround. But, at least, I can use harbour for my
day to day work :-|
This change should not make any difference but to DOS users.
2000-11-05 18:39 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* config/os2/gcc.cf
+ added support to -DSIMPLEX define required for SimpLex only code added by Ron.

View File

@@ -171,8 +171,8 @@ static void hb_stackPush( void ); /* pushes an item on to the stack */
static void hb_stackInit( void ); /* initializes the stack */
static void hb_stackDispLocal( void ); /* show the types of the items on the stack for debugging purposes */
#define STACK_INITHB_ITEMS 100
#define STACK_EXPANDHB_ITEMS 20
#define STACK_INITHB_ITEMS 2000
#define STACK_EXPANDHB_ITEMS 200
/* misc */
static void hb_vmDoInitStatics( void ); /* executes all _INITSTATICS functions */