sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: //This function is used in the test code to kill SCHSVR or MinimalTaskHandler sl@0: //processes (or some other) when they leftover and may cause OOM condinitons. sl@0: static void KillProcessL(const TDesC& aProcessName) sl@0: { sl@0: TFullName name; sl@0: sl@0: TInt err = KErrNotFound; sl@0: sl@0: TBuf<64> pattern(aProcessName); sl@0: TInt length = pattern.Length(); sl@0: pattern += _L("*"); sl@0: TFindProcess procFinder(pattern); sl@0: sl@0: while(procFinder.Next(name) == KErrNone) sl@0: { sl@0: if(name.Length() > length) sl@0: {//If found name is a string containing aProcessName string. sl@0: TChar c(name[length]); sl@0: if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-')) sl@0: {//If the found name is other valid application name starting with aProcessName string. sl@0: RDebug::Print(_L(":: Process name: \"%S\".\n"), &name); sl@0: continue; sl@0: } sl@0: } sl@0: RProcess proc; sl@0: sl@0: err = proc.Open(name); sl@0: if(err == KErrNone) sl@0: { sl@0: sl@0: //If the process is alive, terminate it sl@0: if(proc.ExitType() == EExitPending) sl@0: { sl@0: proc.Kill(0); sl@0: RDebug::Print(_L("\"%S\" process killed.\n"), &name); sl@0: } sl@0: sl@0: //If the process has already died record the error sl@0: else err = KErrDied; sl@0: sl@0: } sl@0: proc.Close(); sl@0: } sl@0: User::Leave(err); sl@0: } sl@0: sl@0: void DoTestsL() sl@0: { sl@0: TFileName name; sl@0: User::CommandLine(name); sl@0: KillProcessL(name); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); sl@0: if(cleanup == NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: sl@0: TRAPD(err,DoTestsL()); sl@0: sl@0: delete cleanup; sl@0: return err; sl@0: } sl@0: