Skip to content

Commit c061bf9

Browse files
committed
stub fs
1 parent 186cac3 commit c061bf9

10 files changed

Lines changed: 1067 additions & 27 deletions

File tree

kernel/src/tests/smoke.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ wast_tests!(
1616
test_process_functions "../../../tests/test_process_functions.wast",
1717
test_memory_functions "../../../tests/test_memory_functions.wast",
1818
test_time_functions "../../../tests/test_time_functions.wast",
19+
test_filesystem_stubs "../../../tests/test_filesystem_stubs.wast",
1920
);

kernel/src/wasm/func/host.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ impl HostFunc {
5757
}
5858

5959
pub struct Caller<'a, T> {
60-
store: &'a mut StoreInner<T>,
61-
caller: &'a crate::wasm::vm::Instance,
60+
pub(crate) store: &'a mut StoreInner<T>,
61+
pub(crate) caller: &'a crate::wasm::vm::Instance,
6262
}
6363

6464
impl<T> Caller<'_, T> {

0 commit comments

Comments
 (0)