mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-05 09:46:36 +08:00
62fdc75d2d
It is currently possible to run the idle experiment, and it can raise and catch exceptions, but exceptions are not yet propagated across RPC boundaries.
13 lines
284 B
C
13 lines
284 B
C
#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);
|
|
int rpc(int rpc_num, ...);
|
|
void lognonl(const char *fmt, ...);
|
|
void log(const char *fmt, ...);
|
|
|
|
#endif /* __KSTARTUP_H */
|