diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f82cca936e..b52add3f6c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,14 @@ +2000-11-05 19:52 GMT+1 Maurilio Longo + * 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 * config/os2/gcc.cf + added support to -DSIMPLEX define required for SimpLex only code added by Ron. diff --git a/harbour/source/vm/hvm.c b/harbour/source/vm/hvm.c index 7665485dee..28956eaa98 100644 --- a/harbour/source/vm/hvm.c +++ b/harbour/source/vm/hvm.c @@ -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 */