os/ossrv/genericservices/taskscheduler/Test/MinimalTaskHandler/faultyminimaltaskhandler.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <schtask.h>
    17 #include <s32file.h>
    18 
    19 
    20 //***********************************************************************************
    21 LOCAL_D TInt Execute()
    22 	{
    23 	TInt err = KErrNoMemory;
    24 
    25 	RFile file;
    26 			
    27 	// Adopt the task file from the Task Scheduler
    28 	err = file.AdoptFromCreator(TScheduledTaskFile::FsHandleIndex(),
    29 								TScheduledTaskFile::FileHandleIndex());
    30 	
    31 	//Panic the client to test server robustness							
    32 	User::Panic(_L("Test Panic"),0);
    33 	
    34 	file.Close();
    35 	return err;
    36 
    37 	}
    38 
    39 
    40 //***********************************************************************************
    41 GLDEF_C TInt E32Main()
    42 	{
    43 	return Execute();
    44 	}