rftrace_frontend/lib.rs
1//! This crate provides a possible frontend for rftracer.
2//! It can initialize an event buffer, enable/disable tracing and save the trace to disk in a uftrace compatible format.
3//! A lot of documentation can be found in the parent workspaces [readme](https://github.com/hermit-os/rftrace).
4
5#![feature(vec_into_raw_parts)]
6extern crate byteorder;
7
8mod frontend;
9mod interface;
10
11// Re-export frontend functions
12pub use frontend::*;