xv6-k210/kernel/include/timer.h

15 lines
203 B
C

#ifndef __TIMER_H
#define __TIMER_H
#include "types.h"
#include "spinlock.h"
extern struct spinlock tickslock;
extern uint ticks;
void timerinit();
void set_next_timeout();
void timer_tick();
#endif