ittapi 0.3.0

High-level Rust bindings for ittapi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This library allows Rust programs to use Intel® Instrumentation and Tracing Technology (ITT)
//! APIs. These APIs are declared by a static library, [`ittnotify`], and dynamically used by
//! performance collection tools (e.g., 'libittnotify_collector.so', VTune Profiler).
//!
//! [`ittnotify`]: https://github.com/intel/ittapi

#![deny(missing_docs)]
mod domain;
mod event;
pub mod jit;
mod string;
mod task;
mod util;

pub use domain::Domain;
pub use event::Event;
pub use string::StringHandle;
pub use task::Task;