11 lines
135 B
C
11 lines
135 B
C
#ifndef __mutex_h__
|
|
#define __mutex_h__
|
|
|
|
#include <pthread.h>
|
|
#include <stdint.h>
|
|
|
|
void * runner (void *);
|
|
int64_t run (void);
|
|
|
|
#endif
|