SayoriOS  0.3.3
sync.h
1 #ifndef SYNC_H
2 #define SYNC_H
3 
4 #include "common.h"
5 
6 typedef bool mutex_t;
7 
8 /* Get mutex */
9 bool mutex_get(mutex_t* mutex, bool wait);
10 /* Release mutex */
11 void mutex_release(mutex_t* mutex);
12 
13 #endif
Основные определения ядра
bool mutex_get(mutex_t *mutex, bool wait)
Получить мьютекс
Definition: sync.c:19
void mutex_release(mutex_t *mutex)
Получить ближайщий свободный блок
Definition: sync.c:36