blob: ef52ab013a0d08c6ea5f3f7d7d2d57f20c8483a7 [file] [log] [blame]
mtklein50ffd992015-03-30 08:13:33 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8// This file is not part of the public Skia API.
9
10#ifndef SkSpinlock_DEFINED
11#define SkSpinlock_DEFINED
12
herbe6e41a82015-09-28 11:24:13 -070013#include "../private/SkAtomics.h"
mtklein50ffd992015-03-30 08:13:33 -070014
15#define SK_DECLARE_STATIC_SPINLOCK(name) namespace {} static SkPODSpinlock name
16
17// This class has no constructor and must be zero-initialized (the macro above does this).
dongseong.hwang5ce8b432015-07-10 08:32:23 -070018class SK_API SkPODSpinlock {
mtklein828877d2015-07-09 10:51:36 -070019public:
mtklein50ffd992015-03-30 08:13:33 -070020 void acquire() {
mtklein828877d2015-07-09 10:51:36 -070021 // To act as a mutex, we need an acquire barrier if we take the lock.
22 if (sk_atomic_exchange(&fLocked, true, sk_memory_order_acquire)) {
23 // Lock was contended. Fall back to an out-of-line spin loop.
24 this->contendedAcquire();
25 }
mtklein50ffd992015-03-30 08:13:33 -070026 }
mtklein828877d2015-07-09 10:51:36 -070027
mtklein50ffd992015-03-30 08:13:33 -070028 void release() {
29 // To act as a mutex, we need a release barrier.
30 sk_atomic_store(&fLocked, false, sk_memory_order_release);
31 }
32
mtklein828877d2015-07-09 10:51:36 -070033private:
34 void contendedAcquire();
mtklein50ffd992015-03-30 08:13:33 -070035 bool fLocked;
36};
37
38// For non-global-static use cases, this is normally what you want.
39class SkSpinlock : public SkPODSpinlock {
40public:
41 SkSpinlock() { this->release(); }
42};
43
44#endif//SkSpinlock_DEFINED