matos/core/synchro.h
2020-07-08 23:08:50 +02:00

8 lines
158 B
C

#pragma once
#include <wait.h>
int mutexInit(struct mutex *);
int mutexFree(struct mutex *);
int mutexLock(struct mutex *);
int mutexUnlock(struct mutex *);