blob: c2be630c5f865b14c3caacd4829384972ad43b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#pragma once
#include "defines.h"
#include "str.h"
// -- Paths
typedef struct path_opt {
Str8 path;
bool has_value;
} path_opt;
// TODO: convert to using str8
// TODO: use uppercase code style
path_opt path_parent(arena* a, const char* path);
// --- Threads
typedef struct CelThread CelThread;
CelThread Thread_Create();
void Thread_Destroy(CelThread* thread);
// --- Mutexes
typedef struct CelMutex CelMutex;
CelMutex Mutex_Create();
void Mutex_Destroy(CelMutex* mutex);
/** @brief Blocks until the mutex can be acquired. if returns false then an error occurred and can
* be checked (TODO) */
bool Mutex_Lock(CelMutex* mutex);
/** @brief Tries to acquire the mutex like `mutex_lock` but returns immediately if the mutex has
* already been locked */
bool Mutex_TryLock(CelMutex* mutex);
/** @brief Releases a mutex. If it is already unlocked then does nothing */
void Mutex_Unlock(CelMutex* mutex);
|