23 lines
280 B
C
23 lines
280 B
C
#ifndef OVNI_H
|
|
#define OVNI_H
|
|
|
|
int
|
|
ovni_proc_init(int loom, int proc);
|
|
|
|
int
|
|
ovni_thread_init(pid_t tid);
|
|
|
|
int
|
|
ovni_thread_isready();
|
|
|
|
void
|
|
ovni_clock_update();
|
|
|
|
int
|
|
ovni_thread_ev(uint8_t fsm, uint8_t event, uint16_t a, uint16_t b);
|
|
|
|
int
|
|
ovni_thread_flush();
|
|
|
|
#endif /* OVNI_H */
|