1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! This crate provides a possible frontend for rftracer.
//! It can initialize an event buffer, enable/disable tracing and save the trace to disk in a uftrace compatible format.
//! A lot of documentation can be found in the parent workspaces [readme](https://github.com/tlambertz/rftrace).

#![feature(vec_into_raw_parts)]
extern crate byteorder;

mod frontend;
mod interface;

// Re-export frontend functions
pub use frontend::*;