systemhealthmanagement/systemhealthmgr/inc/sysmon_patch.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2006-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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __SYSMON_PATCH_H__
       
    17 #define __SYSMON_PATCH_H__
       
    18 
       
    19 /**
       
    20 This patchable constant contains the throttle time - time to wait before restarting a process/application.
       
    21 @SYMPatchable
       
    22 @publishedPartner
       
    23 @released
       
    24 */
       
    25 IMPORT_C extern const TInt KWaitTime;
       
    26 
       
    27 /**
       
    28 This patchable constant contains the Rate of Failure (i.e. re-launch) of a monitored component.
       
    29 If, at a re-launch attempt, a count(number of re-launch attempts) exceeds the maximum
       
    30 (no. of retries specified for the component) allowed, the component will not be re-launched and 
       
    31 the failure policy specified when this component was monitored will be enacted.
       
    32 Default value for this constant is - 30mins.  Interval is taken in seconds
       
    33 
       
    34 @SYMPatchable
       
    35 @publishedPartner
       
    36 @released
       
    37 */
       
    38 IMPORT_C extern const TInt KIntervalForReLaunchRateOfFailure;
       
    39 
       
    40 #endif