libcoio/coio.h

20 lines
310 B
C
Raw Normal View History

#ifndef COIO_H
#define COIO_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct CoioTask CoioTask;
typedef void (*coio_func) (void *arg);
int coio_main ();
int coio_create(void (*f) (void *arg), void *arg, unsigned int stacksize);
void coio_yield();
#ifdef __cplusplus
}
#endif
#endif