diff -r 000000000000 -r 4e1aa6a622a0 sysstatemgmt/systemstarter/test/sysmondemo/src/changebootmode.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysstatemgmt/systemstarter/test/sysmondemo/src/changebootmode.cpp Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,65 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// changemode.cpp +// +// + +#include "e32base.h" +#include "e32std.h" + +#include +#include + +LOCAL_C void ChangeModeL() +{ + + + TBuf<40> command; + User::CommandLine(command) ; + TPtr8 data = command.Collapse() ; + + TInt mode = 0 ; + + if (data != KNullDesC8) + { + TLex8 txt = TLex8(const_cast (data.PtrZ())) ; + User::LeaveIfError(txt.Val(mode)) ; + } + + HAL::Set(HALData::EPersistStartupModeKernel, mode); + + // Initialisation complete, now signal + RProcess::Rendezvous(KErrNone); + +} + + +GLDEF_C TInt E32Main() + { + __UHEAP_MARK; // mark heap state + + CTrapCleanup* theTrapCleanup=CTrapCleanup::New(); + + if (theTrapCleanup == NULL) + return KErrNoMemory; + else + { + TRAPD(error, ChangeModeL()); + + delete theTrapCleanup; + __UHEAP_MARKEND; // check no memory leak + + return(error); + } + }