2014-03-30 08:37:20 -04:00
|
|
|
//========================================================================
|
2019-04-16 08:43:29 -04:00
|
|
|
// GLFW 3.4 POSIX - www.glfw.org
|
2014-03-30 08:37:20 -04:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
2019-04-15 14:50:00 -04:00
|
|
|
// Copyright (c) 2006-2017 Camilla Löwy <elmindreda@glfw.org>
|
2014-03-30 08:37:20 -04:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
2021-07-13 15:50:09 -04:00
|
|
|
#define GLFW_POSIX_TLS_STATE _GLFWtlsPOSIX posix;
|
|
|
|
#define GLFW_POSIX_MUTEX_STATE _GLFWmutexPOSIX posix;
|
2014-03-30 08:37:20 -04:00
|
|
|
|
|
|
|
|
2017-03-08 07:58:09 -05:00
|
|
|
// POSIX-specific thread local storage data
|
2014-09-02 13:42:43 -04:00
|
|
|
//
|
2014-03-30 08:37:20 -04:00
|
|
|
typedef struct _GLFWtlsPOSIX
|
|
|
|
{
|
2015-10-28 08:22:33 -04:00
|
|
|
GLFWbool allocated;
|
2017-03-08 07:58:09 -05:00
|
|
|
pthread_key_t key;
|
2014-03-30 08:37:20 -04:00
|
|
|
} _GLFWtlsPOSIX;
|
|
|
|
|
2017-05-25 12:23:09 -04:00
|
|
|
// POSIX-specific mutex data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWmutexPOSIX
|
|
|
|
{
|
|
|
|
GLFWbool allocated;
|
|
|
|
pthread_mutex_t handle;
|
|
|
|
} _GLFWmutexPOSIX;
|
|
|
|
|