diff options
Diffstat (limited to 'src/ccapi/common')
| -rw-r--r-- | src/ccapi/common/win/OldCC/ccutils.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ccapi/common/win/OldCC/ccutils.c b/src/ccapi/common/win/OldCC/ccutils.c index d1b39cc38..cf881cda1 100644 --- a/src/ccapi/common/win/OldCC/ccutils.c +++ b/src/ccapi/common/win/OldCC/ccutils.c @@ -102,8 +102,9 @@ HANDLE createThreadEvent(char* uuid, char* suffix) { event_name = allocEventName(uuid, suffix); if (!event_name) status = cci_check_error(ccErrNoMem); } +#if 0 cci_debug_printf("%s event_name:%s", __FUNCTION__, event_name); - +#endif if (!status) { hEvent = CreateEvent(psa, FALSE, FALSE, event_name); if (!hEvent) status = cci_check_error(GetLastError()); @@ -125,8 +126,9 @@ HANDLE openThreadEvent(char* uuid, char* suffix) { event_name = allocEventName(uuid, suffix); if (!event_name) status = cci_check_error(ccErrNoMem); +#if 0 cci_debug_printf("%s event_name:%s", __FUNCTION__, event_name); - +#endif if (!status) { hEvent = OpenEvent(EVENT_MODIFY_STATE, FALSE, event_name); if (!hEvent) status = cci_check_error(GetLastError()); |
