Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 //This function is used in the test code to kill SCHSVR or MinimalTaskHandler
20 //processes (or some other) when they leftover and may cause OOM condinitons.
21 static void KillProcessL(const TDesC& aProcessName)
25 TInt err = KErrNotFound;
27 TBuf<64> pattern(aProcessName);
28 TInt length = pattern.Length();
30 TFindProcess procFinder(pattern);
32 while(procFinder.Next(name) == KErrNone)
34 if(name.Length() > length)
35 {//If found name is a string containing aProcessName string.
36 TChar c(name[length]);
37 if(c.IsAlphaDigit() || c == TChar('_') || c == TChar('-'))
38 {//If the found name is other valid application name starting with aProcessName string.
39 RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
45 err = proc.Open(name);
49 //If the process is alive, terminate it
50 if(proc.ExitType() == EExitPending)
53 RDebug::Print(_L("\"%S\" process killed.\n"), &name);
56 //If the process has already died record the error
68 User::CommandLine(name);
72 GLDEF_C TInt E32Main()
74 CTrapCleanup* cleanup=CTrapCleanup::New();
80 TRAPD(err,DoTestsL());