sl@0: // Copyright (c) 2008-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: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef __PANIC_H__ sl@0: #define __PANIC_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: */ sl@0: _LIT(KCategory, "t_stress"); sl@0: sl@0: /** sl@0: */ sl@0: enum TPanic sl@0: { sl@0: EPanic0, sl@0: EPanic1, sl@0: EPanic2, sl@0: EPanic3, sl@0: EPanic4, sl@0: EPanic5, sl@0: EPanic6, sl@0: EPanic7, sl@0: EPanic8, sl@0: EPanic9, sl@0: EPanic10, sl@0: EPanic11, sl@0: EPanic12, sl@0: EPanic13, sl@0: EPanic14, sl@0: EPanic15, sl@0: EPanic16, sl@0: EPanic17, sl@0: EPanic18, sl@0: EPanic19, sl@0: }; sl@0: sl@0: /** sl@0: */ sl@0: static void Panic( TPanic aReason ) sl@0: { sl@0: User::Panic(KCategory, aReason ); sl@0: } sl@0: sl@0: #endif //__PANIC_H__