/* Copyright (c) 2005-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef __TBB_test_common_tls_limit_H_ #define __TBB_test_common_tls_limit_H_ #include "config.h" class LimitTLSKeysTo { #if _WIN32 || _WIN64 #if __TBB_WIN8UI_SUPPORT && !defined(TLS_OUT_OF_INDEXES) // for SDKs for Windows*8 Store Apps that did not redirect TLS to FLS #define TlsAlloc() FlsAlloc(NULL) #define TlsFree FlsFree #define TLS_OUT_OF_INDEXES FLS_OUT_OF_INDEXES #endif typedef DWORD handle; #else // _WIN32 || _WIN64 typedef pthread_key_t handle; #endif // for platforms that not limit number of TLS keys, set artificial limit static const int LIMIT = 16*1024; handle handles[LIMIT]; int lastUsedIdx; public: LimitTLSKeysTo(int keep_keys) { for (lastUsedIdx=0; lastUsedIdx= keep_keys-1, "Less TLS keys are available than requested"); for (; keep_keys>0; keep_keys--, lastUsedIdx--) { #if _WIN32 || _WIN64 TlsFree(handles[lastUsedIdx]); #else int ret = pthread_key_delete(handles[lastUsedIdx]); REQUIRE_MESSAGE(!ret, "Can't delete a key"); #endif } // REMARK("%d thread local objects allocated in advance\n", lastUsedIdx+1); } ~LimitTLSKeysTo() { for (int i=0; i<=lastUsedIdx; i++) { #if _WIN32 || _WIN64 TlsFree(handles[i]); #else int ret = pthread_key_delete(handles[i]); REQUIRE_MESSAGE(!ret, "Can't delete a key"); #endif } lastUsedIdx = 0; } }; #endif // __TBB_test_common_tls_limit_H_