Files
c_soft/soft/mythread.h

13 lines
140 B
C
Raw Normal View History

2024-06-18 19:37:43 +08:00
#ifndef mythread_h__
#define mythread_h__
#include "pthread.h"
int myth_create(int (*func)(void *t),void *t);
int myth_join();
#endif