Removed timer interval from public timer.h header and duplicated Timer_Callback to allow timer.c to build without needing #include <timer.h>

Cette révision appartient à :
tedbullock 2007-09-17 21:16:25 +00:00
Parent 70c255dc95
révision 86d75c8bed
2 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -41,11 +41,13 @@
#include <heap.h>
#include <queue.h>
#include <httperf.h>
#include <timer.h>
#define HEAP_SIZE 4096
#define WHEEL_SIZE 4096
#define TIMER_INTERVAL (1.0/1000) /* timer granularity in seconds */
typedef void (*Timer_Callback) (struct Timer * t, Any_Type arg);
static Time now;
static Time next_tick;

Voir le fichier

@ -32,8 +32,6 @@
#ifndef timer_h
#define timer_h
#define TIMER_INTERVAL (1.0/1000) /* timer granularity in seconds */
struct Timer;
typedef void (*Timer_Callback) (struct Timer * t, Any_Type arg);