aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/mutex.h
blob: 6814adf823361821bfb1c24e23676aec1ee98059 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <stdint.h>

#define MUTEX_LOCKED 1
#define MUTEX_UNLOCKED 0


typedef uint32_t mutex_t;

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

// the mutex code assumes a yield() function is defined somewhere
void yield();

#define STATIC_MUTEX(name) static mutex_t name __attribute__((section("locks"))) = MUTEX_UNLOCKED;
	

/* vim: set ts=4 sw=4 tw=0 noet :*/