llvm/lldb/source/Host/common/ProcessRunLock.cpp

//===-- ProcessRunLock.cpp ------------------------------------------------===//
//
// 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 _WIN32
#include "lldb/Host/ProcessRunLock.h"

namespace lldb_private {

ProcessRunLock::ProcessRunLock() {}

ProcessRunLock::~ProcessRunLock() {}

bool ProcessRunLock::ReadTryLock() {}

bool ProcessRunLock::ReadUnlock() {}

bool ProcessRunLock::SetRunning() {}

bool ProcessRunLock::TrySetRunning() {}

bool ProcessRunLock::SetStopped() {}
}

#endif