summaryrefslogtreecommitdiff
path: root/src/user/lib/include/sched.h
blob: 1fe148d73db1c21807bea289ff8f389881110023 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef DEF_MUTEX_H
#define DEF_MUTEX_H

#include <types.h>

#define MUTEX_LOCKED 1
#define MUTEX_UNLOCKED 0

//A mutex is just an uint32_t
typedef uint32_t mutex_t;

#ifdef __cplusplus
extern "C" {
#endif

int mutex_lock(mutex_t* mutex);	//wait for mutex to be free
int mutex_lockE(mutex_t* mutex);	//lock mutex only if free, returns !0 if locked, 0 if was busy
void mutex_unlock(mutex_t* mutex);

#ifdef __cplusplus
}
#endif

#endif