1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#pragma once
5
6namespace JSC {
7
8class NoLock {
9public:
10 void lock() { }
11 void unlock() { }
12 bool isHeld() { return false; }
13};
14
15typedef NoLock ConcurrentJSLock;
16
17} // namespace JSC
18

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of qtdeclarative/src/3rdparty/masm/stubs/runtime/ConcurrentJSLock.h