2015-08-02 11:41:05 +08:00
|
|
|
#ifndef __KSTARTUP_H
|
|
|
|
#define __KSTARTUP_H
|
|
|
|
|
|
|
|
long long int now_init(void);
|
|
|
|
void now_save(long long int now);
|
|
|
|
int watchdog_set(int ms);
|
|
|
|
void watchdog_clear(int id);
|
2015-08-09 21:16:41 +08:00
|
|
|
void send_rpc(int service, const char *tag, ...);
|
2015-08-10 01:17:00 +08:00
|
|
|
int recv_rpc(void *slot);
|
2015-08-02 11:41:05 +08:00
|
|
|
void lognonl(const char *fmt, ...);
|
|
|
|
void log(const char *fmt, ...);
|
|
|
|
|
|
|
|
#endif /* __KSTARTUP_H */
|