You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
/*
|
|
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __TIME_USER_H__
|
|
#define __TIME_USER_H__
|
|
|
|
extern void timer(void);
|
|
extern void switch_timers(int to_real);
|
|
extern void idle_sleep(int secs);
|
|
extern void enable_timer(void);
|
|
extern void disable_timer(void);
|
|
extern unsigned long time_lock(void);
|
|
extern void time_unlock(unsigned long);
|
|
extern void user_time_init(void);
|
|
|
|
#endif
|
|
|