kithara-test-utils 0.0.1-alpha4

kithara test runtime: probe/hang/mock helpers (no-op in release).
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(target_arch = "wasm32", allow(unused_imports))]

mod usdt_wire;
mod wire;

pub use usdt_wire::{fire_0, fire_1, fire_2, fire_3, fire_4, fire_5, fire_6};
#[cfg(not(target_arch = "wasm32"))]
pub use wire::OWNED_INSTALL_ID;
pub use wire::{
    IntoProbeArg, Probe, bump_install_id, caller_fn_above, current_install_id, current_thread_u64,
    next_probe_seq, next_thread_probe_seq, register_probes,
};