rename function Yap_init_global to Yap_init_optyap_global.

This commit is contained in:
Joao 2011-04-01 11:13:48 +01:00
parent 27d3399768
commit b4a00d1fef
4 changed files with 3 additions and 8 deletions

View File

@ -1356,7 +1356,7 @@ Yap_InitWorkspace(UInt Heap, UInt Stack, UInt Trail, UInt Atts, UInt max_table_s
Yap_InitMemory (Trail, Heap, Stack+Atts);
#endif /* YAPOR && !THREADS */
#if defined(YAPOR) || defined(TABLING)
Yap_init_global(max_table_size, n_workers, sch_loop, delay_load);
Yap_init_optyap_global(max_table_size, n_workers, sch_loop, delay_load);
#endif /* YAPOR || TABLING */
Yap_AttsSize = Atts;

View File

@ -78,7 +78,7 @@ struct worker WORKER;
** Global functions **
*******************************/
void Yap_init_global(int max_table_size, int n_workers, int sch_loop, int delay_load) {
void Yap_init_optyap_global(int max_table_size, int n_workers, int sch_loop, int delay_load) {
int i;
/* global data related to memory management */

View File

@ -33,7 +33,7 @@ void remap_memory(void);
** opt.init.c **
*************************/
void Yap_init_global(int, int, int, int);
void Yap_init_optyap_global(int, int, int, int);
void Yap_init_local(void);
void make_root_frames(void);
#ifdef YAPOR

View File

@ -46,11 +46,6 @@
static void share_private_nodes(int worker_q);
/* ---------------------- **
** Local macros **
** ---------------------- */
/* -------------------------- **
** Global functions **
** -------------------------- */