diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-05 23:12:19 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-05 23:12:19 +0000 |
commit | 4d76e4b4b06e50f8d4823ad3dd37d8c202e442e0 (patch) | |
tree | 42e80c4d0b532e8dabd0caf3a49266b92693d85d /NetWare/nw5thread.h | |
parent | b15a22ab7111cb08cbc38a0a816e11f3fc34a386 (diff) | |
download | perl-4d76e4b4b06e50f8d4823ad3dd37d8c202e442e0.tar.gz |
NetWare update from Ananth Kesari.
p4raw-id: //depot/perl@14567
Diffstat (limited to 'NetWare/nw5thread.h')
-rw-r--r-- | NetWare/nw5thread.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/NetWare/nw5thread.h b/NetWare/nw5thread.h index 930273b932..c4e17d15cf 100644 --- a/NetWare/nw5thread.h +++ b/NetWare/nw5thread.h @@ -100,7 +100,7 @@ typedef unsigned long perl_mutex; //For now let us just see when this happens -sgp. #define COND_INIT(c) \ STMT_START { \ - ConsolePrintf("In COND_INIT\n"); \ + /*ConsolePrintf("In COND_INIT\n"); */\ } STMT_END /* (c)->waiters = 0; \ @@ -110,7 +110,7 @@ typedef unsigned long perl_mutex; #define COND_SIGNAL(c) \ STMT_START { \ - ConsolePrintf("In COND_SIGNAL\n"); \ + /*ConsolePrintf("In COND_SIGNAL\n"); */\ } STMT_END /*if ((c)->waiters > 0 && \ SignalLocalSemaphore((c)->sem) != 0) \ @@ -118,7 +118,7 @@ typedef unsigned long perl_mutex; #define COND_BROADCAST(c) \ STMT_START { \ - ConsolePrintf("In COND_BROADCAST\n"); \ + /*ConsolePrintf("In COND_BROADCAST\n"); */\ } STMT_END /*if ((c)->waiters > 0 ) { \ @@ -130,13 +130,13 @@ typedef unsigned long perl_mutex; } \*/ #define COND_WAIT(c, m) \ STMT_START { \ - ConsolePrintf("In COND_WAIT\n"); \ + /*ConsolePrintf("In COND_WAIT\n"); */\ } STMT_END #define COND_DESTROY(c) \ STMT_START { \ - ConsolePrintf("In COND_DESTROY\n"); \ + /*ConsolePrintf("In COND_DESTROY\n"); */\ } STMT_END /* (c)->waiters = 0; \ |