ipc/chromium/src/base/thread_local_win.cc

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
     2 // Use of this source code is governed by a BSD-style license that can be
     3 // found in the LICENSE file.
     5 #include "base/thread_local.h"
     7 #include <windows.h>
     9 #include "base/logging.h"
    11 namespace base {
    13 // static
    14 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
    15   slot = TlsAlloc();
    16   CHECK(slot != TLS_OUT_OF_INDEXES);
    17 }
    19 // static
    20 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
    21   if (!TlsFree(slot)) {
    22     NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
    23   }
    24 }
    26 // static
    27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
    28   return TlsGetValue(slot);
    29 }
    31 // static
    32 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
    33   if (!TlsSetValue(slot, value)) {
    34     CHECK(false) << "Failed to TlsSetValue().";
    35   }
    36 }
    38 }  // namespace base

mercurial