mirror of https://github.com/m-labs/artiq.git
17 lines
369 B
C
17 lines
369 B
C
#ifndef __EXCEPTIONS_H
|
|
#define __EXCEPTIONS_H
|
|
|
|
enum {
|
|
EID_NOMEM = 0
|
|
};
|
|
|
|
int exception_setjmp(void *jb) __attribute__((returns_twice));
|
|
void exception_longjmp(void *jb) __attribute__((noreturn));
|
|
|
|
void *exception_push(void);
|
|
void exception_pop(int levels);
|
|
int exception_getid(void);
|
|
void exception_raise(int id) __attribute__((noreturn));
|
|
|
|
#endif /* __EXCEPTIONS_H */
|