mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-02-03 11:03:16 +08:00
12 lines
255 B
C
12 lines
255 B
C
#ifndef JOS_KERN_TIME_H
|
|
#define JOS_KERN_TIME_H
|
|
#ifndef JOS_KERNEL
|
|
# error "This is a JOS kernel header; user programs should not #include it"
|
|
#endif
|
|
|
|
void time_init(void);
|
|
void time_tick(void);
|
|
unsigned int time_msec(void);
|
|
|
|
#endif /* JOS_KERN_TIME_H */
|