First public contribution.
1 // Copyright (c) 2004-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.
22 _LIT(KScheduleServerExe, "Schexe");
23 const TUid KTaskSchedulerExeUid = { 0x10005399 };
26 EXPORT_C TInt StartSch32()
29 const TUidType serverUid(KNullUid, KNullUid, KTaskSchedulerExeUid);
31 TInt r=server.Create(KScheduleServerExe,KNullDesC,serverUid);
35 server.Rendezvous(stat);
36 if (stat!=KRequestPending)
37 server.Kill(0); // abort startup
39 server.Resume(); // logon OK - start the server
40 User::WaitForRequest(stat); // wait for start or death
41 // we can't use the 'exit reason' if the server panicked as this
42 // is the panic 'reason' and may be '0' which cannot be distinguished
44 r=(server.ExitType()==EExitPanic) ? KErrGeneral : stat.Int();