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