summaryrefslogtreecommitdiff
path: root/src/mutex.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-03-08 20:48:05 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-03-08 20:48:05 +0100
commit0b429e06b8c4b66a9f7fe89b5504315ab4f69616 (patch)
treed5cf9d15d8790559f0c4b006ede0ca1314639077 /src/mutex.cpp
parentdef620a66bc5b0dc1107102f2c234888dc9bd830 (diff)
linux building
Diffstat (limited to 'src/mutex.cpp')
-rw-r--r--src/mutex.cpp102
1 files changed, 0 insertions, 102 deletions
diff --git a/src/mutex.cpp b/src/mutex.cpp
deleted file mode 100644
index f224312..0000000
--- a/src/mutex.cpp
+++ /dev/null
@@ -1,102 +0,0 @@
-#include "mutex.h"
-
-ts_mutex ts_mutex_create()
-{
- ts_mutex result;
- result.mutex = CreateMutex(
- NULL, // default security attributes
- FALSE, // initially not owned
- NULL); // unnamed ts_mutex
-
- return result;
-}
-
-ts_mutex ts_mutex_create_recursive()
-{
- return ts_mutex_create();
-}
-
-void ts_mutex_lock(ts_mutex *ts_mutex)
-{
- WaitForSingleObject(
- ts_mutex->mutex, // handle to ts_mutex
- INFINITE); // no time-out interval
-}
-
-int ts_mutex_trylock(ts_mutex *ts_mutex)
-{
- return WaitForSingleObject(ts_mutex->mutex, 1) == WAIT_OBJECT_0;
-}
-
-void ts_mutex_unlock(ts_mutex *ts_mutex)
-{
- ReleaseMutex(ts_mutex->mutex);
-}
-
-void ts_mutex_destroy(ts_mutex *ts_mutex)
-{
- CloseHandle(ts_mutex->mutex);
-}
-
-
-ts_thread ts_thread_start(void *(*start_routine) (void *), void *arg)
-{
- ts_thread result;
- result.valid = 0;
-
- result.thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)start_routine,
- arg, 0, NULL);
- result.valid = 1;
-
- return result;
-}
-
-void ts_thread_join(ts_thread *ts_thread)
-{
- if (ts_thread->valid)
- {
- WaitForSingleObject(ts_thread->thread, INFINITE);
- CloseHandle(ts_thread->thread);
- }
-}
-
-int ts_thread_tryjoin(ts_thread *ts_thread)
-{
- if (ts_thread->valid)
- {
- int result = WaitForSingleObject(ts_thread->thread, 0);
- return result == WAIT_OBJECT_0;
- }
- return 0;
-}
-
-void ts_thread_detach(ts_thread *ts_thread)
-{
- if (ts_thread->valid)
- {
- CloseHandle(ts_thread->thread);
- }
-}
-
-void ts_thread_stop(ts_thread *ts_thread)
-{
- if (ts_thread->valid)
- {
- SuspendThread(ts_thread->thread);
- }
-}
-
-int ts_thread_get_id()
-{
- return GetCurrentThreadId();
-}
-
-void ts_thread_exit()
-{
- ExitThread(0);
-}
-
-void ts_thread_sleep(int microseconds)
-{
- Sleep(microseconds/1000);
-} \ No newline at end of file