fvm_sdk 2.12.0

Filecoin Virtual Machine actor development SDK
Documentation
//! Syscalls for interacting with the VM.

#[doc(inline)]
pub use fvm_shared::sys::out::vm::InvocationContext;

super::fvm_syscalls! {
    module = "vm";

    /// Abort execution with the given code and message. The code is recorded in the receipt, the
    /// message is for debugging only.
    ///
    /// # Arguments
    ///
    /// - `code` is the [`ExitCode`][fvm_shared::error::ExitCode] to abort with. If this code is
    ///   less than the [minimum "user" exit
    ///   code][fvm_shared::error::ExitCode::FIRST_USER_EXIT_CODE], it will be replaced with
    ///   [`SYS_ILLEGAL_EXIT_CODE`][fvm_shared::error::ExitCode::SYS_ILLEGAL_EXIT_CODE].
    /// - `message_off` and `message_len` specify the offset and length (in wasm memory) of an
    ///   optional debug message associated with this abort. These parameters may be null/0 and will
    ///   be ignored if invalid.
    ///
    /// # Errors
    ///
    /// None. This function doesn't return.
    pub fn abort(code: u32, message_off: *const u8, message_len: u32) -> !;


    /// Returns the details about this invocation.
    ///
    /// # Errors
    ///
    /// None
    pub fn context() -> Result<InvocationContext>;
}