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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "featmgrserver.h"
17 #include "featmgrdebug.h"
18 #include "featmgrconfiguration.h"
20 // -----------------------------------------------------------------------------
21 // Function that starts the FeatMgrServer.
22 // -----------------------------------------------------------------------------
24 static void RunServerL()
28 // Naming the server thread after the startup helps to debug panics
29 User::LeaveIfError( User::RenameProcess( KServerProcessName ) );
31 User::LeaveIfError( User::RenameThread( KServerProcessName ) );
33 // Create and install the active scheduler we need
34 CActiveScheduler* scheduler = new(ELeave) CActiveScheduler;
35 CleanupStack::PushL( scheduler );
37 CActiveScheduler::Install( scheduler );
39 // Now we are ready to instantiate the actual CServer2 instance
40 CFeatMgrServer* server = CFeatMgrServer::NewLC( KServerCActivePriority );
42 // Initialisation complete, now signal the client
43 RProcess::Rendezvous(KErrNone);
45 INFO_LOG( "RunServerL() - Starting scheduler..." );
48 CActiveScheduler::Start();
50 INFO_LOG( "RunServerL() - Scheduler stopped" );
52 // Cleanup the server and scheduler
53 CleanupStack::PopAndDestroy( server );
54 CleanupStack::PopAndDestroy( scheduler );
57 // -----------------------------------------------------------------------------
59 // -----------------------------------------------------------------------------
67 CTrapCleanup* cleanup = CTrapCleanup::New();
68 TInt ret = KErrNoMemory;
72 TRAP( ret, RunServerL() );