diff -r c1f20ce4abcf -r 3e88ff8f41d5 kernel/eka/kernel/smonitor.cpp --- a/kernel/eka/kernel/smonitor.cpp Tue Aug 31 16:34:26 2010 +0300 +++ b/kernel/eka/kernel/smonitor.cpp Wed Sep 01 12:34:56 2010 +0100 @@ -322,7 +322,7 @@ } PrintLine(buf); Printf("Default priority %d WaitLink Priority %d\r\n",pT->iDefaultPriority,pT->iWaitLink.iPriority); - Printf("ExitInfo %d,%d,%S\r\n",pT->iExitType,pT->iExitReason,&pT->iExitCategory); + Printf("ExitInfo %d,%d,%lS\r\n",pT->iExitType,pT->iExitReason,&pT->iExitCategory); Printf("Flags %08x, Handles %08x\r\n",pT->iFlags,&pT->iHandles); Printf("Supervisor stack base %08x size %x\r\n", pT->iSupervisorStack, pT->iSupervisorStackSize); Printf("User stack base %08x size %x\r\n", pT->iUserStackRunAddress, pT->iUserStackSize); @@ -493,7 +493,7 @@ void Monitor::DumpProcessData(DProcess* pP) { - Printf("ExitInfo %d,%d,%S\r\n",pP->iExitType,pP->iExitReason,&pP->iExitCategory); + Printf("ExitInfo %d,%d,%lS\r\n",pP->iExitType,pP->iExitReason,&pP->iExitCategory); Printf("Flags %08x, Handles %08x, Attributes %08x\r\n",pP->iFlags,&pP->iHandles,pP->iAttributes); Printf("DataBssChunk %08x, CodeSeg %08x\r\n",pP->iDataBssStackChunk,pP->iCodeSeg); Printf("DllLock %08x, Process Lock %08x SID %08x\r\n",pP->iDllLock,pP->iProcessLock,pP->iS.iSecureId);