10 lines
154 B
C
10 lines
154 B
C
|
#ifndef __SMART_THREAD_H__
|
||
|
#define __SMART_THREAD_H__
|
||
|
#include <pthread.h>
|
||
|
|
||
|
pthread_t createMainThread();
|
||
|
int destroryMainThread(pthread_t pid);
|
||
|
|
||
|
|
||
|
#endif
|