|
From: Gordon K. <kin...@us...> - 2004-05-11 20:32:20
|
Update of /cvsroot/teem/teem/src/air In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32641 Modified Files: threadAir.c Log Message: now, even with airThreadNoopWarning, there is no printed warning for doing new or nix on thread constructs Index: threadAir.c =================================================================== RCS file: /cvsroot/teem/teem/src/air/threadAir.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** threadAir.c 7 Jan 2004 15:34:27 -0000 1.14 --- threadAir.c 11 May 2004 20:32:11 -0000 1.15 *************** *** 455,461 **** mutex = (airThreadMutex *)calloc(1, sizeof(airThreadMutex)); - if (airThreadNoopWarning) { - fprintf(stderr, "%s: WARNING: all mutex usage is a no-op!\n", me); - } return mutex; } --- 455,458 ---- *************** *** 493,499 **** cond = (airThreadCond *)calloc(1, sizeof(airThreadCond)); - if (airThreadNoopWarning) { - fprintf(stderr, "%s: WARNING: all cond usage is a no-op!\n", me); - } return cond; } --- 490,493 ---- |