This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/H/iglobals.h
2011-05-04 19:34:22 +01:00

65 lines
808 B
C

/* This file, iglobals.h, was generated automatically by "yap -L misc/buildheap"
please do not update, update misc/GLOBALS instead */
static void InitGlobal(void) {
#if THREADS
Yap_NOfThreads = 1;
Yap_NOfThreadsCreated = 1;
Yap_ThreadsTotalTime = 0L;
#endif
#if defined(YAPOR) || defined(THREADS)
INIT_LOCK(Yap_BGL);
#endif
Yap_AllowLocalExpansion = TRUE;
Yap_AllowGlobalExpansion = TRUE;
Yap_AllowTrailExpansion = TRUE;
Yap_SizeOfOverflow = 0;
Yap_AGcLastCall = 0;
Yap_AGcThreshold = 10000;
Yap_AGCHook = NULL;
#ifdef THREADS
INIT_LOCK(Yap_ThreadHandlesLock);
#endif
#if defined(YAPOR) || defined(TABLING)
#endif
Yap_Initialised = FALSE;
Yap_InitialisedFromPL = FALSE;
Yap_PL_Argc = 0;
Yap_PL_Argv = NULL;
Yap_HaltHooks = NULL;
}