summaryrefslogtreecommitdiff
path: root/examples/APG/Timers/PCB.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Timers/PCB.h')
-rw-r--r--examples/APG/Timers/PCB.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/APG/Timers/PCB.h b/examples/APG/Timers/PCB.h
deleted file mode 100644
index 7fdb9d2d1cf..00000000000
--- a/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*/