remove debugging messages.

This commit is contained in:
Vitor Santos Costa 2012-12-10 14:28:04 +00:00
parent 87e811028c
commit ac74c9e3de

View File

@ -4786,7 +4786,6 @@ struct PL_local_data *Yap_InitThreadIO(int wid)
{ {
CACHE_REGS CACHE_REGS
struct PL_local_data *p; struct PL_local_data *p;
fprintf(stderr,"wid=%d\n", wid);
if (wid) if (wid)
p = (struct PL_local_data *)malloc(sizeof(struct PL_local_data)); p = (struct PL_local_data *)malloc(sizeof(struct PL_local_data));
else else
@ -4800,7 +4799,6 @@ struct PL_local_data *Yap_InitThreadIO(int wid)
memcpy(p, Yap_local[0]->PL_local_data_p_, sizeof(struct PL_local_data)); memcpy(p, Yap_local[0]->PL_local_data_p_, sizeof(struct PL_local_data));
} }
#endif #endif
fprintf(stderr,"wid=%d done\n", wid);
return p; return p;
} }