1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-05-21 21:49:08 +00:00
|
|
|
* $Id: timer.h,v 1.5.4.5 1998/05/08 01:15:19 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1998-04-03 19:21:56 +00:00
|
|
|
#define TICKUNIT 100000 /* usec's per Unit */
|
|
|
|
#define SECTICKS (1000000/TICKUNIT) /* Units per second */
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
struct pppTimer {
|
1997-08-25 00:29:32 +00:00
|
|
|
int state;
|
1998-04-03 19:21:56 +00:00
|
|
|
const char *name;
|
1997-08-25 00:29:32 +00:00
|
|
|
u_long rest; /* Ticks to expire */
|
|
|
|
u_long load; /* Initial load value */
|
1997-11-22 03:37:54 +00:00
|
|
|
void (*func)(void *); /* Function called when timer is expired */
|
1997-08-25 00:29:32 +00:00
|
|
|
void *arg; /* Argument passed to timeout function */
|
1995-01-31 06:29:58 +00:00
|
|
|
struct pppTimer *next; /* Link to next timer */
|
|
|
|
struct pppTimer *enext; /* Link to next expired timer */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TIMER_STOPPED 0
|
|
|
|
#define TIMER_RUNNING 1
|
|
|
|
#define TIMER_EXPIRED 2
|
|
|
|
|
1998-04-03 19:26:02 +00:00
|
|
|
struct prompt;
|
1997-10-26 12:42:13 +00:00
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
extern void timer_Start(struct pppTimer *);
|
|
|
|
extern void timer_Stop(struct pppTimer *);
|
|
|
|
extern void timer_TermService(void);
|
|
|
|
extern void timer_Show(int LogLevel, struct prompt *);
|