rtsan-standalone-sys 0.3.0

Unsafe Rust bindings for RTSan standalone library
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

#[cfg(rtsan_enabled)]
extern "C" {
    pub fn __rtsan_realtime_enter();
    pub fn __rtsan_realtime_exit();
    pub fn __rtsan_disable();
    pub fn __rtsan_enable();
    pub fn __rtsan_ensure_initialized();
    pub fn __rtsan_notify_blocking_call(blocking_function_name: *const core::ffi::c_char);
}