equal
deleted
inserted
replaced
18 |
18 |
19 #include "CWDTimer.h" |
19 #include "CWDTimer.h" |
20 #include "WatchDogCommon.h" |
20 #include "WatchDogCommon.h" |
21 #include "MWDTimerHandler.h" |
21 #include "MWDTimerHandler.h" |
22 #include <HarvesterServerLogger.h> |
22 #include <HarvesterServerLogger.h> |
|
23 #include "OstTraceDefinitions.h" |
|
24 #ifdef OST_TRACE_COMPILER_IN_USE |
|
25 #include "cwdtimerTraces.h" |
|
26 #endif |
|
27 |
23 // ----------------------------------------------------------------------------- |
28 // ----------------------------------------------------------------------------- |
24 // CWDTimer::NewL |
29 // CWDTimer::NewL |
25 // ----------------------------------------------------------------------------- |
30 // ----------------------------------------------------------------------------- |
26 // |
31 // |
27 CWDTimer* CWDTimer::NewL( MWDTimerHandler* aWDTimerHandler ) |
32 CWDTimer* CWDTimer::NewL( MWDTimerHandler* aWDTimerHandler ) |
76 // CWDTimer::StartWDTimer() |
81 // CWDTimer::StartWDTimer() |
77 // ----------------------------------------------------------------------------- |
82 // ----------------------------------------------------------------------------- |
78 // |
83 // |
79 void CWDTimer::StartWDTimer() |
84 void CWDTimer::StartWDTimer() |
80 { |
85 { |
|
86 OstTraceFunctionEntry0( CWDTIMER_STARTWDTIMER_ENTRY ); |
81 CPIXLOGSTRING("CWDTimer::StartWDTimer(): Entered"); |
87 CPIXLOGSTRING("CWDTimer::StartWDTimer(): Entered"); |
82 //start the timer |
88 //start the timer |
83 iTimer.After( iStatus , MONITORING_DELAY ); // Wait 60 seconds before checking the servers |
89 iTimer.After( iStatus , MONITORING_DELAY ); // Wait 60 seconds before checking the servers |
84 SetActive(); |
90 OstTraceFunctionExit0( CWDTIMER_STARTWDTIMER_EXIT ); |
|
91 SetActive(); |
85 } |
92 } |
86 |
93 |
87 // ----------------------------------------------------------------------------- |
94 // ----------------------------------------------------------------------------- |
88 // CWDTimer::RunL() |
95 // CWDTimer::RunL() |
89 // ----------------------------------------------------------------------------- |
96 // ----------------------------------------------------------------------------- |