artiq/soc/runtime/messages.h

24 lines
297 B
C
Raw Normal View History

#ifndef __MESSAGES_H
#define __MESSAGES_H
enum {
MESSAGE_TYPE_FINISHED,
MESSAGE_TYPE_EXCEPTION
};
struct msg_unknown {
int type;
};
struct msg_finished {
int type;
};
struct msg_exception {
int type;
int eid;
long long int eparams[3];
};
#endif /* __MESSAGES_H */