File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -790,7 +790,7 @@ void RtlCompareMemoryUlong()
790790
791791uint32_t RtlInitializeCriticalSection (XRTL_CRITICAL_SECTION * cs)
792792{
793- printf (" RtlInitializeCriticalSection %x\n " , cs);
793+ // printf("RtlInitializeCriticalSection %x\n", cs);
794794 cs->Header .Absolute = 0 ;
795795 cs->LockCount = -1 ;
796796 cs->RecursionCount = 0 ;
@@ -1253,7 +1253,7 @@ void XexGetModuleHandle()
12531253
12541254bool RtlTryEnterCriticalSection (XRTL_CRITICAL_SECTION * cs)
12551255{
1256- printf (" RtlTryEnterCriticalSection\n " );
1256+ // printf("RtlTryEnterCriticalSection\n");
12571257 uint32_t thisThread = g_ppcContext->r13 .u32 ;
12581258 assert (thisThread != NULL );
12591259
@@ -1272,7 +1272,7 @@ bool RtlTryEnterCriticalSection(XRTL_CRITICAL_SECTION* cs)
12721272
12731273void RtlInitializeCriticalSectionAndSpinCount (XRTL_CRITICAL_SECTION * cs, uint32_t spinCount)
12741274{
1275- printf (" RtlInitializeCriticalSectionAndSpinCount\n " );
1275+ // printf("RtlInitializeCriticalSectionAndSpinCount\n");
12761276 cs->Header .Absolute = (spinCount + 255 ) >> 8 ;
12771277 cs->LockCount = -1 ;
12781278 cs->RecursionCount = 0 ;
You can’t perform that action at this time.
0 commit comments