Files
haiku-beta6/headers/private/kernel/timer.h
T

52 lines
1.3 KiB
C
Raw Normal View History

/*
2004-03-14 18:03:18 +00:00
** Copyright 2003-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the MIT License.
*/
2002-07-09 12:24:59 +00:00
#ifndef _KERNEL_TIMER_H
#define _KERNEL_TIMER_H
#include <KernelExport.h>
2002-07-09 12:24:59 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2002-07-09 12:24:59 +00:00
2004-03-14 18:03:18 +00:00
struct kernel_args;
#define B_TIMER_REAL_TIME_BASE 0x2000
// For an absolute timer the given time is interpreted as a real-time, not
// as a system time. Note that setting the real-time clock will cause the
// timer to be updated -- it will expire according to the new clock.
// Relative timers are unaffected by this flag.
#define B_TIMER_USE_TIMER_STRUCT_TIMES 0x4000
// For add_timer(): Use the timer::schedule_time (absolute time) and
// timer::period values instead of the period parameter.
#define B_TIMER_FLAGS \
(B_TIMER_USE_TIMER_STRUCT_TIMES | B_TIMER_REAL_TIME_BASE)
2008-04-22 15:29:22 +00:00
/* Timer info structure */
struct timer_info {
2009-09-25 14:36:26 +00:00
const char *name;
int (*get_priority)(void);
status_t (*set_hardware_timer)(bigtime_t timeout);
status_t (*clear_hardware_timer)(void);
status_t (*init)(struct kernel_args *args);
};
typedef struct timer_info timer_info;
/* kernel functions */
2004-03-14 18:03:18 +00:00
status_t timer_init(struct kernel_args *);
void timer_init_post_rtc(void);
void timer_real_time_clock_changed();
2004-03-14 18:03:18 +00:00
int32 timer_interrupt(void);
2002-07-09 12:24:59 +00:00
2002-07-20 23:06:32 +00:00
#ifdef __cplusplus
}
#endif
2002-07-09 12:24:59 +00:00
#endif /* _KERNEL_TIMER_H */