macro_rules! kernel_error {
(OutOfMemory { requested: $req:expr, available: $avail:expr }) => { ... };
(ProcessNotFound { pid: $pid:expr }) => { ... };
(InvalidArgument { $name:expr => $value:expr }) => { ... };
($variant:ident) => { ... };
}