Skip to content

Commit

Permalink
Added some more Debug implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed Oct 17, 2023
1 parent cdd20e1 commit 447efc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/wasix/src/runtime/task_manager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pub type WasmResumeTrigger = dyn FnOnce() -> Pin<Box<dyn Future<Output = Result<
+ Sync;

/// The properties passed to the task
#[derive(Debug)]
pub struct TaskWasmRunProperties {
pub ctx: WasiFunctionEnv,
pub store: Store,
Expand Down
2 changes: 1 addition & 1 deletion lib/wasix/src/state/func_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::{
const DEFAULT_STACK_SIZE: u64 = 1_048_576u64;
const DEFAULT_STACK_BASE: u64 = DEFAULT_STACK_SIZE;

#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct WasiFunctionEnv {
pub env: FunctionEnv<WasiEnv>,
}
Expand Down

0 comments on commit 447efc4

Please sign in to comment.