sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // COMSDBGSREXE.CPP sl@0: // Implements the Flogger server process entry point sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "comsdbgstd.h" sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: /** sl@0: * Flogger server process entry point sl@0: * sl@0: * @note Flogger server is intended to run forever, so it starts automatically. sl@0: @internalComponent sl@0: */ sl@0: { sl@0: RProcess().SecureApi(RProcess::ESecureApiOn); sl@0: RProcess().DataCaging(RProcess::EDataCagingOn); sl@0: sl@0: return FLogger::Run(); sl@0: } sl@0: sl@0: sl@0: