summaryrefslogtreecommitdiffstats
path: root/include/linux/timer.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
committer <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
commitbeb116954b9b7f3bb56412b2494b562f02b864b1 (patch)
tree120e997879884e1b9d93b265221b939d2ef1ade1 /include/linux/timer.h
parent908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff)
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'include/linux/timer.h')
-rw-r--r--include/linux/timer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/timer.h b/include/linux/timer.h
index acb9ca26e..b922d0dbb 100644
--- a/include/linux/timer.h
+++ b/include/linux/timer.h
@@ -14,6 +14,8 @@
* BEEP_TIMER console beep timer
*
* RS_TIMER timer for the RS-232 ports
+ *
+ * SWAP_TIMER timer for the background pageout daemon
*
* HD_TIMER harddisk timer
*
@@ -31,11 +33,14 @@
*
* MCD_TIMER Mitsumi CD-ROM Timer
*
+ * GSCD_TIMER Goldstar CD-ROM Timer
+ *
*/
#define BLANK_TIMER 0
#define BEEP_TIMER 1
#define RS_TIMER 2
+#define SWAP_TIMER 3
#define HD_TIMER 16
#define FLOPPY_TIMER 17
@@ -48,6 +53,9 @@
#define MCD_TIMER 23
#define HD_TIMER2 24
+#define GSCD_TIMER 25
+
+#define DIGI_TIMER 29
struct timer_struct {
unsigned long expires;
@@ -81,6 +89,8 @@ struct timer_list {
extern void add_timer(struct timer_list * timer);
extern int del_timer(struct timer_list * timer);
+extern void it_real_fn(unsigned long);
+
extern inline void init_timer(struct timer_list * timer)
{
timer->next = NULL;