artiq/soc/runtime/ksupport.h

13 lines
306 B
C
Raw Normal View History

#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 07:25:58 +08:00
int send_rpc(int service, const char *tag, ...);
void lognonl(const char *fmt, ...);
void log(const char *fmt, ...);
#endif /* __KSTARTUP_H */