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
5extern crate byteorder;
6
7mod frontend;
8mod interface;
9
10// Re-export frontend functions
11pub use frontend::*;