remove LOCAL_FormatInfo e LOCAL_DelayArenaOverflows from LOCALS.
This commit is contained in:
parent
dc3c54c164
commit
1358d7037a
@ -48,13 +48,11 @@
|
||||
|
||||
#define LOCAL_GlobalArena WL->global_arena
|
||||
#define LOCAL_GlobalArenaOverflows WL->global_arena_overflows
|
||||
#define LOCAL_DelayArenaOverflows WL->delay_arena_overflows
|
||||
#define LOCAL_ArenaOverflows WL->arena_overflows
|
||||
#define LOCAL_DepthArenas WL->depth_arenas
|
||||
#define LOCAL_ArithError WL->arith_error
|
||||
#define LOCAL_LastAssertedPred WL->last_asserted_pred
|
||||
#define LOCAL_DebugOn WL->debug_on
|
||||
#define LOCAL_FormatInfo WL->f_info
|
||||
#define LOCAL_ScannerStack WL->scanner_stack
|
||||
#define LOCAL_ScannerExtraBlocks WL->scanner_extra_blocks
|
||||
#define LOCAL_BallTerm WL->ball_term
|
||||
|
@ -50,13 +50,11 @@ typedef struct worker_local {
|
||||
|
||||
Term global_arena;
|
||||
UInt global_arena_overflows;
|
||||
Int delay_arena_overflows;
|
||||
Int arena_overflows;
|
||||
Int depth_arenas;
|
||||
int arith_error;
|
||||
struct pred_entry* last_asserted_pred;
|
||||
int debug_on;
|
||||
struct format_status* f_info;
|
||||
char* scanner_stack;
|
||||
struct scanner_extra_alloc* scanner_extra_blocks;
|
||||
struct DB_TERM *ball_term;
|
||||
|
@ -48,13 +48,11 @@ static void InitWorker(int wid) {
|
||||
|
||||
FOREIGN(wid)->global_arena = 0L;
|
||||
FOREIGN(wid)->global_arena_overflows = 0L;
|
||||
FOREIGN(wid)->delay_arena_overflows = 0L;
|
||||
FOREIGN(wid)->arena_overflows = 0L;
|
||||
FOREIGN(wid)->depth_arenas = 0;
|
||||
FOREIGN(wid)->arith_error = FALSE;
|
||||
FOREIGN(wid)->last_asserted_pred = NULL;
|
||||
FOREIGN(wid)->debug_on = FALSE;
|
||||
FOREIGN(wid)->f_info = NULL;
|
||||
FOREIGN(wid)->scanner_stack = NULL;
|
||||
FOREIGN(wid)->scanner_extra_blocks = NULL;
|
||||
FOREIGN(wid)->ball_term = NULL;
|
||||
|
@ -55,8 +55,6 @@ static void RestoreWorker(int wid USES_REGS) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
RestoreBallTerm(wid);
|
||||
|
||||
|
||||
|
@ -52,14 +52,12 @@ union CONSULT_OBJ* consultlow LOCAL_ConsultLow =NULL
|
||||
//global variables
|
||||
Term global_arena LOCAL_GlobalArena =0L TermToGlobalOrAtomAdjust
|
||||
UInt global_arena_overflows LOCAL_GlobalArenaOverflows =0L
|
||||
Int delay_arena_overflows LOCAL_DelayArenaOverflows =0L
|
||||
Int arena_overflows LOCAL_ArenaOverflows =0L
|
||||
Int depth_arenas LOCAL_DepthArenas =0
|
||||
|
||||
int arith_error LOCAL_ArithError =FALSE
|
||||
struct pred_entry* last_asserted_pred LOCAL_LastAssertedPred =NULL
|
||||
int debug_on LOCAL_DebugOn =FALSE
|
||||
struct format_status* f_info LOCAL_FormatInfo =NULL
|
||||
char* scanner_stack LOCAL_ScannerStack =NULL
|
||||
struct scanner_extra_alloc* scanner_extra_blocks LOCAL_ScannerExtraBlocks =NULL
|
||||
struct DB_TERM *ball_term LOCAL_BallTerm =NULL RestoreBallTerm(wid)
|
||||
|
Reference in New Issue
Block a user