pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2004-03-24
2004-03-24 20:34:44 by Henrik Grubbström (Grubba) <grubba@grubba.org>
529b84598199a230c9f2b9b93d01009b3dca3a0e (
13
lines) (+
8
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed warning.
Rev: src/interpret.c:1.344
Rev: src/lexer.h:1.48
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: interpret.c,v 1.
343
2004/
02
/
09
22
:
02
:
56
mast
Exp $
+
|| $Id: interpret.c,v 1.
344
2004/
03
/
24
20
:
34
:
44
grubba
Exp $
*/ #include "global.h"
-
RCSID("$Id: interpret.c,v 1.
343
2004/
02
/
09
22
:
02
:
56
mast
Exp $");
+
RCSID("$Id: interpret.c,v 1.
344
2004/
03
/
24
20
:
34
:
44
grubba
Exp $");
#include "interpret.h" #include "object.h" #include "program.h"
14:
#include "array.h" #include "mapping.h" #include "pike_error.h"
-
#include "language.h"
+
#include "stralloc.h" #include "constants.h" #include "pike_macros.h"
206:
Pike_interpreter.evaluator_stack=0; Pike_interpreter.mark_stack=0; goto use_malloc;
+
#define NEED_USE_MALLOC_LABEL
} } /* Don't keep this fd on exec() */
222:
if((char *)MAP_FAILED == (char *)Pike_interpreter.evaluator_stack) Pike_interpreter.evaluator_stack=0; if((char *)MAP_FAILED == (char *)Pike_interpreter.mark_stack) Pike_interpreter.mark_stack=0;
+
#ifdef NEED_USE_MALLOC_LABEL
use_malloc:
-
+
#endif /* NEED_USE_MALLOC_LABEL */
-
#else
+
#else
/* !USE_MMAP_FOR_STACK */
Pike_interpreter.evaluator_stack=0; Pike_interpreter.mark_stack=0;
-
#endif
+
#endif
/* USE_MMAP_FOR_STACK */
if(!Pike_interpreter.evaluator_stack) {