C++ TargetRTS
Loading...
Searching...
No Matches
RTTimerController.h
1/*
2 * Licensed Materials - Property of HCL and/or IBM
3 * Copyright HCL Technologies Ltd. 2016, 2021. All Rights Reserved.
4 * Copyright IBM Corporation 1999, 2016. All Rights Reserved.
5 *
6 * U.S. Government Users Restricted Rights - Use, duplication or
7 * disclosure restricted by GSA ADP Schedule.
8 */
9
10#ifndef __RTTimerController_h__
11#define __RTTimerController_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTPeerController_h__
18#include <RTPeerController.h>
19#endif
20
22{
23public:
24 explicit RTTimerController( RTDebugger * );
25 virtual ~RTTimerController( void );
26
27 virtual void mainLoop( void ) override;
28 virtual void printStats( void ) const override;
29
30protected:
31 virtual void waitForEvents( void ) override;
32
33private:
34 // unavailable methods
36 RTTimerController & operator=( const RTTimerController & );
37}; //lint !e1712
38
39#endif // __RTTimerController_h__
Definition: RTDebugger.h:58
A controller that acts as an interface to a physical thread which runs a group of capsule instances i...
Definition: RTPeerController.h:27
Definition: RTTimerController.h:22
virtual void printStats(void) const override
Print various statistics to stdout about what has happened in the RT application (e....