20 lines
255 B
C
20 lines
255 B
C
#ifndef OVNI_H
|
|
#define OVNI_H
|
|
|
|
int
|
|
ovni_proc_init(int loom, int proc, int ncpus);
|
|
|
|
int
|
|
ovni_thread_init(pid_t tid);
|
|
|
|
int
|
|
ovni_clock_update();
|
|
|
|
int
|
|
ovni_ev_worker(uint8_t fsm, uint8_t event, int32_t data);
|
|
|
|
void
|
|
ovni_cpu_set(int cpu);
|
|
|
|
#endif /* OVNI_H */
|