13 lines
122 B
C
13 lines
122 B
C
|
|
#ifndef __CUTILS_THREADS_H__
|
||
|
|
#define __CUTILS_THREADS_H__
|
||
|
|
|
||
|
|
#include <pthread.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
pid_t gettid();
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|