equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Panic codes for GOOM monitor |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef GOOMPANIC_ |
|
20 #define GOOMPANIC_ |
|
21 |
|
22 #include <e32def.h> |
|
23 |
|
24 enum TGOomMonitorPanic |
|
25 { |
|
26 KRuleConfiguredBeforeApplication, |
|
27 KCloseAppActionIsResued, |
|
28 KAppConfigAddedTwice, |
|
29 KSameAppClosureConfiguredTwice, |
|
30 KGOomDefaultAppCloseNotConfigured, |
|
31 KPluginConfigAddedTwice, |
|
32 KRuleConfiguredBeforePlugin, |
|
33 KGOomDefaultAppNotConfigured, |
|
34 KGOomDefaultPluginNotConfigured, |
|
35 KNoCoeEnvFound, |
|
36 KInvalidWgName, |
|
37 KGOomInvalidPriority, |
|
38 KAppCloseActionEqualPriorities, |
|
39 KEGLProfilingExtensionNotAvailable |
|
40 }; |
|
41 |
|
42 void GOomMonitorPanic(TGOomMonitorPanic aReason); |
|
43 void GOomConfigParserPanic(TInt aReason); |
|
44 |
|
45 #endif /*OOMPANIC_*/ |