Files
CS361-Computer-Systems-II/lab8-synch/mutex.h
T
2026-05-31 14:34:00 -04:00

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