Update contrib.
1 // Copyright (c) 1997-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.
18 #include <bafl/backup_std.h>
22 _LIT(KRomPath,"Z:\\System\\Libs\\");
23 _LIT(KFullBackUpServer,"eikbackupsrv.dll");
25 static void RunServerL()
29 User::LeaveIfError(User::RenameThread(__BACKUP_SERVER_NAME_V2));
30 thread.SetPriority(EPriorityRealTime);
35 CBaServBackupScheduler* scheduler = new (ELeave) CBaServBackupScheduler;
36 CleanupStack::PushL(scheduler);
37 CActiveScheduler::Install(scheduler);
39 CBaBackupServer* server = NULL;
41 TFullName threadName(_L("*"));
42 threadName.Append(KWSERVThreadName);
43 TFindThread findWserv(threadName);
45 TBool wservLoaded = EFalse;
46 if (findWserv.Next(name) != KErrNone)
47 server = CBaBackupServer::NewL();
50 User::LeaveIfError(library.Load(KFullBackUpServer, KRomPath));
51 CleanupClosePushL(library);
52 TLibraryFunction loadServer = library.Lookup(1);
53 server = reinterpret_cast<CBaBackupServer*>((*loadServer)());
54 User::LeaveIfNull(server);
57 CleanupStack::PushL(server);
60 RProcess::Rendezvous(KErrNone);
62 CActiveScheduler::Start();
64 CleanupStack::PopAndDestroy(server);
66 CleanupStack::PopAndDestroy(); //library
67 CleanupStack::PopAndDestroy(scheduler);
73 // Server process entry-point
78 CTrapCleanup* cleanup=CTrapCleanup::New();