1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-08 00:26:14 +02:00
youki/crates/container/src/process/message.rs

13 lines
304 B
Rust

/// Used as a wrapper for messages to be sent between child and parent processes
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize)]
pub enum Message {
IntermediateReady(i32),
InitReady,
WriteMapping,
MappingWritten,
SeccompNotify,
SeccompNotifyDone,
}