Files
CS361-Computer-Systems-II/lab8-synch/mutex.h
T

11 lines
135 B
C
Raw Normal View History

2026-05-31 14:34:00 -04:00
#ifndef __mutex_h__
#define __mutex_h__
#include <pthread.h>
#include <stdint.h>
void * runner (void *);
int64_t run (void);
#endif