00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "CommonFramework.h"
00021 #include <e32math.h>
00022
00023
00024
00025
00026
00027 LOCAL_D TInt64 smallRandSeed;
00028
00029 LOCAL_C TInt smallRand()
00030 {
00031
00032 TInt bigResult=Math::Rand(smallRandSeed);
00033 return bigResult % 10;
00034 }
00035
00036 LOCAL_C void sleep(TInt aTenths)
00037 {
00038
00039 User::After(aTenths*100000);
00040 }
00041
00042
00043
00044 LOCAL_C void doExampleL()
00045 {
00046
00047 RTimer heartbeat;
00048 TRequestStatus heartbeatStatus;
00049 heartbeat.CreateLocal();
00050
00051
00052 heartbeat.After(heartbeatStatus,1000000);
00053
00054 TInt heartbeatTick=0;
00055
00056
00057 for (;;)
00058 {
00059
00060 User::WaitForAnyRequest();
00061
00062 if (heartbeatStatus!=KRequestPending)
00063 {
00064
00065 _LIT(KMsgServicing,"Servicing heartbeat tick %d ...\n");
00066 console->Printf(KMsgServicing,heartbeatTick);
00067
00068 sleep(smallRand());
00069 _LIT(KMsgServiced,"... heartbeat tick %d serviced\n");
00070 console->Printf(KMsgServiced,heartbeatTick);
00071
00072 if (heartbeatTick >= 10)
00073 {
00074
00075 _LIT(KMsgFinishing,"Finishing\n");
00076 console->Printf(KMsgFinishing);
00077
00078 break;
00079 }
00080
00081 heartbeatTick++;
00082
00083 heartbeat.After(heartbeatStatus,1000000);
00084
00085 }
00086 else
00087 {
00088
00089 _LIT(KMsgStraySignal,"Stray signal\n");
00090 User::Panic(KMsgStraySignal, 1);
00091 }
00092 }
00093
00094
00095 heartbeat.Close();
00096 }