matos/core/synchro.h

8 lines
158 B
C
Raw Normal View History

2020-07-08 23:08:50 +02:00
#pragma once
#include <wait.h>
int mutexInit(struct mutex *);
int mutexFree(struct mutex *);
int mutexLock(struct mutex *);
int mutexUnlock(struct mutex *);