os/ossrv/genericservices/taskscheduler/Test/MinimalTaskHandler/faultyminimaltaskhandler.cpp
First public contribution.
1 // Copyright (c) 2007-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.
20 //***********************************************************************************
21 LOCAL_D TInt Execute()
23 TInt err = KErrNoMemory;
27 // Adopt the task file from the Task Scheduler
28 err = file.AdoptFromCreator(TScheduledTaskFile::FsHandleIndex(),
29 TScheduledTaskFile::FileHandleIndex());
31 //Panic the client to test server robustness
32 User::Panic(_L("Test Panic"),0);
40 //***********************************************************************************
41 GLDEF_C TInt E32Main()