mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 05:36:35 +00:00
Merge 7b6985f033
into 43f4afef78
This commit is contained in:
commit
728cbd7480
@ -41,12 +41,17 @@ int _glfwCreateContextTLS(void)
|
|||||||
return GLFW_FALSE;
|
return GLFW_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_glfw.posix_tls.allocated = GLFW_TRUE;
|
||||||
return GLFW_TRUE;
|
return GLFW_TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwDestroyContextTLS(void)
|
void _glfwDestroyContextTLS(void)
|
||||||
{
|
{
|
||||||
pthread_key_delete(_glfw.posix_tls.context);
|
if (_glfw.posix_tls.allocated)
|
||||||
|
{
|
||||||
|
pthread_key_delete(_glfw.posix_tls.context);
|
||||||
|
_glfw.posix_tls.allocated = GLFW_FALSE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void _glfwSetContextTLS(_GLFWwindow* context)
|
void _glfwSetContextTLS(_GLFWwindow* context)
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
//
|
//
|
||||||
typedef struct _GLFWtlsPOSIX
|
typedef struct _GLFWtlsPOSIX
|
||||||
{
|
{
|
||||||
|
GLFWbool allocated;
|
||||||
pthread_key_t context;
|
pthread_key_t context;
|
||||||
|
|
||||||
} _GLFWtlsPOSIX;
|
} _GLFWtlsPOSIX;
|
||||||
|
Loading…
Reference in New Issue
Block a user