From 5b4445926e5e242c49d3133d2bd88e27a49a5d93 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 4 Jan 2017 07:20:44 +1000 Subject: [PATCH] Remove some unused functions. --- mini_al.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/mini_al.h b/mini_al.h index 92b5ae83..231ff43d 100644 --- a/mini_al.h +++ b/mini_al.h @@ -1303,11 +1303,6 @@ void mal_sleep__win32(mal_uint32 milliseconds) Sleep((DWORD)milliseconds); } -void mal_yield__win32() -{ - SwitchToThread(); -} - mal_bool32 mal_mutex_create__win32(mal_mutex* pMutex) { @@ -1378,11 +1373,6 @@ void mal_sleep__posix(mal_uint32 milliseconds) usleep(milliseconds * 1000); // <-- usleep is in microseconds. } -void mal_yield__posix() -{ - sched_yield(); -} - mal_bool32 mal_mutex_create__posix(mal_mutex* pMutex) {