moto_ipc/
lib.rs

1#![no_std]
2
3#[cfg(not(feature = "rustc-dep-of-std"))]
4extern crate alloc;
5
6pub mod io_channel;
7pub mod sync;
8pub mod sync_pipe;
9
10#[macro_export]
11macro_rules! moto_log {
12    ($($arg:tt)*) => {
13        {
14        moto_sys::syscalls::SysMem::log(alloc::format!($($arg)*).as_str()).ok();
15        }
16    };
17}