1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* Small helper class for asserting uses of a class are non-reentrant. */
9 #ifndef mozilla_ReentrancyGuard_h
10 #define mozilla_ReentrancyGuard_h
12 #include "mozilla/Assertions.h"
13 #include "mozilla/Attributes.h"
17 /* Useful for implementing containers that assert non-reentrancy */
18 class MOZ_RAII ReentrancyGuard
{
26 explicit ReentrancyGuard(T
& aObj
)
27 : mEntered(aObj
.mEntered
)
29 explicit ReentrancyGuard(T
&)
33 MOZ_ASSERT(!mEntered
);
44 ReentrancyGuard(const ReentrancyGuard
&) = delete;
45 void operator=(const ReentrancyGuard
&) = delete;
48 } // namespace mozilla
50 #endif /* mozilla_ReentrancyGuard_h */