Files
c_soft/soft/mythread.h
2024-06-18 19:37:43 +08:00

13 lines
140 B
C

#ifndef mythread_h__
#define mythread_h__
#include "pthread.h"
int myth_create(int (*func)(void *t),void *t);
int myth_join();
#endif