mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-23 19:48:29 +00:00
winrt: Don't reference generic Condition Variables at all.
It always has the SRWLOCK implementation available to it, so let the linker throw away the generic version if possible.
This commit is contained in:
@@ -194,10 +194,9 @@ static const SDL_cond_impl_t SDL_cond_impl_cv = {
|
||||
&SDL_CondWaitTimeoutNS_cv,
|
||||
};
|
||||
|
||||
/**
|
||||
* Generic Condition Variable implementation using SDL_mutex and SDL_sem
|
||||
*/
|
||||
|
||||
#ifndef __WINRT__
|
||||
/* Generic Condition Variable implementation using SDL_mutex and SDL_sem */
|
||||
static const SDL_cond_impl_t SDL_cond_impl_generic = {
|
||||
&SDL_CreateCond_generic,
|
||||
&SDL_DestroyCond_generic,
|
||||
@@ -205,13 +204,13 @@ static const SDL_cond_impl_t SDL_cond_impl_generic = {
|
||||
&SDL_CondBroadcast_generic,
|
||||
&SDL_CondWaitTimeoutNS_generic,
|
||||
};
|
||||
#endif
|
||||
|
||||
SDL_cond *
|
||||
SDL_CreateCond(void)
|
||||
{
|
||||
if (SDL_cond_impl_active.Create == NULL) {
|
||||
/* Default to generic implementation, works with all mutex implementations */
|
||||
const SDL_cond_impl_t *impl = &SDL_cond_impl_generic;
|
||||
const SDL_cond_impl_t *impl = NULL;
|
||||
|
||||
if (SDL_mutex_impl_active.Type == SDL_MUTEX_INVALID) {
|
||||
/* The mutex implementation isn't decided yet, trigger it */
|
||||
@@ -228,6 +227,8 @@ SDL_CreateCond(void)
|
||||
/* Link statically on this platform */
|
||||
impl = &SDL_cond_impl_cv;
|
||||
#else
|
||||
/* Default to generic implementation, works with all mutex implementations */
|
||||
impl = &SDL_cond_impl_generic;
|
||||
{
|
||||
HMODULE kernel32 = GetModuleHandle(TEXT("kernel32.dll"));
|
||||
if (kernel32) {
|
||||
|
Reference in New Issue
Block a user