We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35309f commit d0649ecCopy full SHA for d0649ec
src/shims/trace/messages.rs
@@ -1,4 +1,15 @@
1
//! Houses the types that are directly sent across the IPC channels.
2
+//!
3
+//! The overall structure of a traced FFI call, from the child process's POV, is
4
+//! as follows:
5
+//! ```
6
+//! message_tx.send(TraceRequest::StartFFI);
7
+//! confirm_rx.recv();
8
+//! raise(SIGSTOP);
9
+//! /* do ffi call */
10
+//! raise(SIGUSR1);
11
+//! let events = event_rx.recv();
12
13
14
/// An IPC request sent by the child process to the parent.
15
///
0 commit comments