diff options
Diffstat (limited to 'ACE/examples/APG/Timers/PCB.h')
-rw-r--r-- | ACE/examples/APG/Timers/PCB.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ACE/examples/APG/Timers/PCB.h b/ACE/examples/APG/Timers/PCB.h deleted file mode 100644 index 7fdb9d2d1cf..00000000000 --- a/ACE/examples/APG/Timers/PCB.h +++ /dev/null @@ -1,29 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -#if !defined(PCB_H) -#define PCB_H - -// Listing 1 code/ch20 -class PCB -{ -public: - PCB (); - virtual ~PCB (); - - // Set/get the timer id that is being handled by this instance. - void setID (long timerID); - long getID (void) const; - - // Handle a timeout event, cancel, and close. - virtual int handleEvent (const void *arg); - virtual int handleCancel (void); - virtual int handleClose (void); - -private: - long timerID_; - int count_; -}; -// Listing 1 - -#endif /*PCB_H*/ |