Remove OSDependent TLS functions

These are no longer used now that the PoolAllocator uses the standard
c++11 thread_local storage mechanism.
This commit is contained in:
Arcady Goldmints-Orlov 2023-07-19 12:18:21 -06:00 committed by arcady-lunarg
parent a0010e27ba
commit 4420f9b33b
3 changed files with 0 additions and 137 deletions

View file

@ -37,17 +37,6 @@
namespace glslang {
//
// Thread Local Storage Operations
//
typedef void* OS_TLSIndex;
#define OS_INVALID_TLS_INDEX nullptr
OS_TLSIndex OS_AllocTLSIndex();
bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue);
bool OS_FreeTLSIndex(OS_TLSIndex nIndex);
void* OS_GetTLSValue(OS_TLSIndex nIndex);
void InitGlobalLock();
void GetGlobalLock();
void ReleaseGlobalLock();