You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
//===-- mutex.h -------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef GWP_ASAN_MUTEX_H_
|
|
#define GWP_ASAN_MUTEX_H_
|
|
|
|
#include "gwp_asan/platform_specific/mutex_fuchsia.h"
|
|
#include "gwp_asan/platform_specific/mutex_posix.h"
|
|
|
|
namespace gwp_asan {
|
|
class Mutex final : PlatformMutex {
|
|
public:
|
|
constexpr Mutex() = default;
|
|
~Mutex() = default;
|
|
Mutex(const Mutex &) = delete;
|
|
Mutex &operator=(const Mutex &) = delete;
|
|
// Lock the mutex.
|
|
void lock();
|
|
// Nonblocking trylock of the mutex. Returns true if the lock was acquired.
|
|
bool tryLock();
|
|
// Unlock the mutex.
|
|
void unlock();
|
|
};
|
|
|
|
class ScopedLock {
|
|
public:
|
|
explicit ScopedLock(Mutex &Mx) : Mu(Mx) { Mu.lock(); }
|
|
~ScopedLock() { Mu.unlock(); }
|
|
ScopedLock(const ScopedLock &) = delete;
|
|
ScopedLock &operator=(const ScopedLock &) = delete;
|
|
|
|
private:
|
|
Mutex Μ
|
|
};
|
|
} // namespace gwp_asan
|
|
|
|
#endif // GWP_ASAN_MUTEX_H_
|