All checks were successful
Intrepid/Prometeu/Runtime/pipeline/head This commit looks good
Reviewed-on: #13 Co-authored-by: bQUARKz <bquarkz@gmail.com> Co-committed-by: bQUARKz <bquarkz@gmail.com>
15 lines
442 B
Rust
15 lines
442 B
Rust
use crate::syscalls::{Syscall, SyscallRegistryEntry, caps};
|
|
|
|
pub(crate) const ENTRIES: &[SyscallRegistryEntry] = &[
|
|
SyscallRegistryEntry::builder(Syscall::LogWrite, "log", "write")
|
|
.args(2)
|
|
.caps(caps::LOG)
|
|
.non_deterministic()
|
|
.cost(5),
|
|
SyscallRegistryEntry::builder(Syscall::LogWriteTag, "log", "write_tag")
|
|
.args(3)
|
|
.caps(caps::LOG)
|
|
.non_deterministic()
|
|
.cost(5),
|
|
];
|