File: debug.h

package info (click to toggle)
liburcu 0.15.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,356 kB
  • sloc: ansic: 23,361; xml: 23,227; sh: 6,480; makefile: 1,045; cpp: 15
file content (20 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
//
// SPDX-License-Identifier: MIT

#ifndef _URCU_DEBUG_H
#define _URCU_DEBUG_H

/*
 * Userspace RCU debugging facilities.
 */

#include <urcu/assert.h>

/*
 * For backward compatibility reasons, this file must expose the urcu_assert()
 * macro.
 */
#define urcu_assert(_cond) urcu_assert_debug(_cond)

#endif /* _URCU_DEBUG_H */