/*
* $Log$
+ * Revision 1.6 2004/06/07 18:10:06 aleph
+ * Remove free pool of timers; use user-provided Timer structure instead
+ *
* Revision 1.5 2004/06/07 15:54:23 aleph
* Update to new event.h naming
*
/* Local vars */
-static Timer *buz_timer;
+static Timer buz_timer;
static bool buz_timer_running;
static time_t buz_repeat_interval;
static time_t buz_repeat_duration;
if (buz_repeat_interval)
{
/* Wait for interval time */
- buz_timer->delay = buz_repeat_interval;
- timer_add(buz_timer);
+ buz_timer.delay = buz_repeat_interval;
+ timer_add(&buz_timer);
}
else
buz_timer_running = false;
{
/* Wait for beep time */
BUZZER_ON;
- buz_timer->delay = buz_repeat_duration;
- timer_add(buz_timer);
+ buz_timer.delay = buz_repeat_duration;
+ timer_add(&buz_timer);
}
else
buz_timer_running = false;
/* Remove the software interrupt if it was already queued */
DISABLE_IRQSAVE(flags);
if (buz_timer_running)
- timer_abort(buz_timer);
+ timer_abort(&buz_timer);
/* Turn on buzzer */
BUZZER_ON;
/* Add software interrupt to turn the buzzer off later */
buz_timer_running = true;
- buz_timer->delay = time;
- timer_add(buz_timer);
+ buz_timer.delay = time;
+ timer_add(&buz_timer);
ENABLE_IRQRESTORE(flags);
}
/* Remove the software interrupt if it was already queued */
if (buz_timer_running)
{
- timer_abort(buz_timer);
+ timer_abort(&buz_timer);
buz_timer_running = false;
}
BUZZER_INIT;
/* Inizializza software interrupt */
- buz_timer = timer_new();
- ASSERT(buz_timer != NULL);
- event_initSoftInt(&buz_timer->expire, (Hook)buz_softint, 0);
+ event_initSoftInt(&buz_timer.expire, (Hook)buz_softint, 0);
}
/*
* $Log$
+ * Revision 1.6 2004/06/07 18:10:06 aleph
+ * Remove free pool of timers; use user-provided Timer structure instead
+ *
* Revision 1.5 2004/06/07 15:56:55 aleph
* Some tabs cleanup and add timer strobe macros
*
#include "kdebug.h"
#include "timer.h"
-#ifdef CONFIG_KERN_SIGNALS
-#include <kern/proc.h>
+#if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
+ #include <kern/proc.h>
#endif
#if (ARCH & ARCH_EMUL)
#endif
-/*! Number of available timers */
-#define MAX_TIMERS 4
-
-
//! Master system clock (1ms accuracy)
volatile time_t _clock;
-static Timer soft_timers[MAX_TIMERS]; /*!< Pool of Timer structures */
-static List timers_pool; /*!< Pool of free timers */
REGISTER static List timers_queue; /*!< Active timers */
-/*!
- * Return a new timer picking and removing it from the available
- * timers pool. Return NULL if no more timers are available.
- */
-Timer *timer_new(void)
-{
- Timer *timer;
- cpuflags_t flags;
-
- DISABLE_IRQSAVE(flags);
-
- /* Should never happen */
- if (ISLISTEMPTY(&timers_pool))
- {
- ENABLE_IRQRESTORE(flags);
- DB(kprintf("Tmrspool empty\n");)
- return NULL;
- }
-
- /* Get a timer from the free pool */
- timer = (Timer *)timers_pool.head;
- REMOVE((Node *)timer);
-
- ENABLE_IRQRESTORE(flags);
-
- return timer;
-}
-
-
-/*!
- * Delete a timer, putting it in the available timers queue.
- */
-void timer_delete(Timer *timer)
-{
- cpuflags_t flags;
- DISABLE_IRQSAVE(flags);
- ADDHEAD(&timers_pool, &timer->link);
- ENABLE_IRQRESTORE(flags);
-}
-
-
/*!
* Add the specified timer to the software timer service queue.
* When the delay indicated by the timer expires, the timer
*/
void timer_init(void)
{
- int i;
-
TIMER_STROBE_INIT;
INITLIST(&timers_queue);
- INITLIST(&timers_pool);
-
- /* Init all software timers in the free pool */
- for (i = 0; i < MAX_TIMERS; i++)
- ADDTAIL(&timers_pool, (Node *)&soft_timers[i]);
_clock = 0;
timer_hw_init();
}
-
/*
* $Log$
+ * Revision 1.6 2004/06/07 18:10:06 aleph
+ * Remove free pool of timers; use user-provided Timer structure instead
+ *
* Revision 1.5 2004/06/07 15:57:12 aleph
* Add function prototypes
*
/* Function protos */
extern void timer_init(void);
-extern Timer *timer_new(void);
-extern void timer_delete(Timer *timer);
extern void timer_add(Timer *timer);
extern Timer *timer_abort(Timer *timer);
extern void timer_delay(time_t time);