forked from luck/tmp_suning_uos_patched
fc47a0d18a
user_time_init_skas and user_time_init_tt were essentially the same. So, this merges them, deleting the mode-specific functions and declarations. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
19 lines
419 B
C
19 lines
419 B
C
/*
|
|
* 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
|