Commit | Line | Data |
---|---|---|
d3d3857f MJ |
1 | // SPDX-FileCopyrightText: 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
2 | // | |
3 | // SPDX-License-Identifier: MIT | |
4 | ||
a77f7d82 MD |
5 | #ifndef _URCU_DEBUG_H |
6 | #define _URCU_DEBUG_H | |
7 | ||
8 | /* | |
a77f7d82 | 9 | * Userspace RCU debugging facilities. |
a77f7d82 MD |
10 | */ |
11 | ||
01477510 | 12 | #include <urcu/assert.h> |
a77f7d82 | 13 | |
2a27e931 FD |
14 | /* |
15 | * For backward compatibility reasons, this file must expose the urcu_assert() | |
16 | * macro. | |
17 | */ | |
18 | #define urcu_assert(_cond) urcu_assert_debug(_cond) | |
19 | ||
a77f7d82 | 20 | #endif /* _URCU_DEBUG_H */ |