mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-21 20:51:32 +00:00
Support checking the execution limit exceeded error.
This commit is contained in:
@ -8,6 +8,7 @@ use crate::{
|
||||
types::{FuncIndex, FuncSig, SigIndex},
|
||||
};
|
||||
use smallvec::SmallVec;
|
||||
use std::any::Any;
|
||||
use std::fmt;
|
||||
use std::fmt::Debug;
|
||||
use std::marker::PhantomData;
|
||||
@ -43,7 +44,7 @@ impl fmt::Debug for InternalEvent {
|
||||
}
|
||||
|
||||
pub struct BkptInfo {
|
||||
pub throw: unsafe extern "C" fn() -> !,
|
||||
pub throw: unsafe fn(Box<dyn Any>) -> !,
|
||||
}
|
||||
|
||||
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator<E>, RM: RunnableModule, E: Debug> {
|
||||
|
Reference in New Issue
Block a user