uifw/AknGlobalUI/AknCapServer/src/AknCapServerShutdown.cpp
branchRCL_3
changeset 55 aecbbf00d063
parent 18 0aa5fbdfbc30
child 56 d48ab3b357f1
--- a/uifw/AknGlobalUI/AknCapServer/src/AknCapServerShutdown.cpp	Thu Aug 19 10:11:06 2010 +0300
+++ b/uifw/AknGlobalUI/AknCapServer/src/AknCapServerShutdown.cpp	Tue Aug 31 15:28:30 2010 +0300
@@ -112,14 +112,14 @@
       // This UID comes from the app, not the mmp!
       TUid uid = doomed->AppUid(); 
       iWs.GetWindowGroupClientThreadId(wgIds->At(ii), threadId);
-      TInt error = thd.Open(threadId);  
+      thd.Open(threadId);  
 	  CleanupClosePushL( thd );
 
       // Is this app OK to kill? We don't kill the this app, EikSrv backdrop or the app that 
       // instigated the shutdown.
       if ((uid != aRequesterUID) && ( uid != KCapServerUid ) && ( uid != KFepSwitchWGId ) && 
              ( doomed->Caption() != EIKON_SERVER_BACKDROP_WINDOW_GROUP_NAME ) &&
-			  !IsSystemCriticalThread( thd ) && (!doomed->IsSystem()) && (uid.iUid != 0))
+			  !IsSystemCriticalThread( thd ) )  
          {
          TApaTask* harbingerOfDoom = new (ELeave) TApaTask(iWs);
          CleanupDeletePushL(harbingerOfDoom);
@@ -251,16 +251,12 @@
         {
 #ifdef _DEBUG
         RDebug::Print(_L("SHUTDOWN: App with ThreadId %d has exited"), TUint(aNotifier->ThreadId()));
-#else
-        aNotifier->ThreadId(); // just for fixing warning
 #endif
         }
     else if (aHowClosed == CAppExitNotifier::EAppExitForced)
         {
 #ifdef _DEBUG
         RDebug::Print(_L("SHUTDOWN: App with ThreadId %d was killed"), TUint(aNotifier->ThreadId()));
-#else
-        aNotifier->ThreadId(); // just for fixing warning
 #endif
         }
     iTotalAppExitNotifiers--;