summaryrefslogtreecommitdiffstats
path: root/skia/ext/SkThread_chrome.cc
blob: 98375fa66ce54e6d52753b6d452bb2d92a473477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/skia/include/core/SkThread.h"

#include <new>

#include "base/atomicops.h"
#include "base/basictypes.h"
#include "base/lock.h"
#include "base/logging.h"

int32_t sk_atomic_inc(int32_t* addr) {
  // sk_atomic_inc is expected to return the old value, Barrier_AtomicIncrement
  // returns the new value.
  return base::subtle::Barrier_AtomicIncrement(addr, 1) - 1;
}

int32_t sk_atomic_dec(int32_t* addr) {
  // sk_atomic_dec is expected to return the old value, Barrier_AtomicIncrement
  // returns the new value.
  return base::subtle::Barrier_AtomicIncrement(addr, -1) + 1;
}

SkMutex::SkMutex(bool isGlobal) : fIsGlobal(isGlobal) {
  COMPILE_ASSERT(sizeof(Lock) <= sizeof(fStorage), Lock_is_too_big_for_SkMutex);
  Lock* lock = reinterpret_cast<Lock*>(fStorage);
  new(lock) Lock();
}

SkMutex::~SkMutex() {
  Lock* lock = reinterpret_cast<Lock*>(fStorage);
  lock->~Lock();
}

void SkMutex::acquire() {
  Lock* lock = reinterpret_cast<Lock*>(fStorage);
  lock->Acquire();
}

void SkMutex::release() {
  Lock* lock = reinterpret_cast<Lock*>(fStorage);
  lock->Release();
}