2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-10 22:16:34 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-10 22:16:34 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-10 22:16:34 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_UTIL_REENTRANCE_H
|
|
|
|
|
2019-06-23 10:01:26 +02:00
|
|
|
namespace ircd {
|
|
|
|
inline namespace util
|
2018-01-10 22:16:34 +01:00
|
|
|
{
|
|
|
|
template<bool &entered> struct reentrance_assertion;
|
2019-06-23 10:01:26 +02:00
|
|
|
}}
|
2018-01-10 22:16:34 +01:00
|
|
|
|
|
|
|
/// Simple assert for reentrancy; useful when static variables are in play.
|
|
|
|
/// You have to place `entered` and give it the proper linkage you want.
|
|
|
|
template<bool &entered>
|
|
|
|
struct ircd::util::reentrance_assertion
|
|
|
|
{
|
|
|
|
reentrance_assertion()
|
|
|
|
{
|
|
|
|
assert(!entered);
|
|
|
|
entered = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
~reentrance_assertion()
|
|
|
|
{
|
|
|
|
assert(entered);
|
|
|
|
entered = false;
|
|
|
|
}
|
|
|
|
};
|