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.
14 // Server Panic methods
27 void Panic(TInt aPanicCode)
31 Calls User::Panic with reason "SB: <panic code>"
33 @param aPanicCode The panic code as defined in panic.h
34 @panic aPanicCode The panic code passed in
37 _LIT(KPanicString,"SB:");
38 User::Panic(KPanicString,aPanicCode);