1 // SPDX-FileCopyrightText: 2015 Mathieu Desnoyers <mathieu.desnoyers (at) efficios.com> 2 // 3 // SPDX-License-Identifier: MIT 4 5 #ifndef _URCU_DEBUG_H 6 #define _URCU_DEBUG_H 7 8 /* 9 * Userspace RCU debugging facilities. 10 */ 11 12 #include <urcu/assert.h> 13 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 20 #endif /* _URCU_DEBUG_H */ 21