tracepoint 0.5.0

Rust API for Linux Tracepoints via user_events
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

#![no_std]
#![warn(missing_docs)]
#![allow(clippy::needless_return)]

//! # Linux Tracepoints

// Exports from tracepoint:
pub use descriptors::EventDataDescriptor;
pub use native::NativeImplementation;
pub use native::TracepointState;
pub use native::NATIVE_IMPLEMENTATION;
pub mod changelog;

mod descriptors;
mod native;