// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/threading/thread_local_storage.h" #include "base/check_op.h" namespace base { namespace internal { bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) { … } void PlatformThreadLocalStorage::FreeTLS(TLSKey key) { … } void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) { … } } // namespace internal } // namespace base