gecko-dev/mozglue/misc/MutexPlatformData_noop.h
Chris Fallin f062cdc9ba Bug 1701613 part 3 - Add stub thread implementation for WASI. r=jandem,wingo
WASI lacks thread support so the stub implementation for threads has been added.

Differential Revision: https://phabricator.services.mozilla.com/D110073
2021-04-08 08:02:16 +00:00

19 lines
581 B
C

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef MutexPlatformData_noop_h
#define MutexPlatformData_noop_h
#if !defined(__wasi__)
# error This code is for WASI only.
#endif
#include "mozilla/PlatformMutex.h"
struct mozilla::detail::MutexImpl::PlatformData {};
#endif // MutexPlatformData_noop_h