ipc/chromium/src/base/thread_local_win.cc

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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