miri/shims/native_lib/trace/mod.rs
1mod child;
2pub mod messages;
3mod parent;
4
5pub use self::child::{Supervisor, init_sv, register_retcode_sv};
6
7/// The size of the temporary stack we use for callbacks that the server executes in the client.
8/// This should be big enough that `mempr_on` and `mempr_off` can safely be jumped into with the
9/// stack pointer pointing to a "stack" of this size without overflowing it.
10const CALLBACK_STACK_SIZE: usize = 1024;