remove debugging messages.

This commit is contained in:
Vitor Santos Costa 2012-12-10 14:28:04 +00:00
parent 87e811028c
commit ac74c9e3de
1 changed files with 0 additions and 2 deletions

View File

@ -4786,7 +4786,6 @@ struct PL_local_data *Yap_InitThreadIO(int wid)
{
CACHE_REGS
struct PL_local_data *p;
fprintf(stderr,"wid=%d\n", wid);
if (wid)
p = (struct PL_local_data *)malloc(sizeof(struct PL_local_data));
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));
}
#endif
fprintf(stderr,"wid=%d done\n", wid);
return p;
}