wasmer_wasix/syscalls/wasi/
mod.rs

1mod args_get;
2mod args_sizes_get;
3mod clock_res_get;
4mod clock_time_get;
5mod clock_time_set;
6mod environ_get;
7mod environ_sizes_get;
8mod fd_advise;
9mod fd_allocate;
10mod fd_close;
11mod fd_datasync;
12mod fd_dup;
13mod fd_event;
14mod fd_fdstat_get;
15mod fd_fdstat_set_flags;
16mod fd_fdstat_set_rights;
17mod fd_filestat_get;
18mod fd_filestat_set_size;
19mod fd_filestat_set_times;
20mod fd_prestat_dir_name;
21mod fd_prestat_get;
22mod fd_read;
23mod fd_readdir;
24mod fd_renumber;
25mod fd_seek;
26mod fd_sync;
27mod fd_tell;
28mod fd_write;
29mod path_create_directory;
30mod path_filestat_get;
31mod path_filestat_set_times;
32mod path_link;
33mod path_open;
34mod path_readlink;
35mod path_remove_directory;
36mod path_rename;
37mod path_symlink;
38mod path_unlink_file;
39mod poll_oneoff;
40mod proc_exit;
41mod proc_raise;
42mod random_get;
43mod thread_spawn;
44
45pub use args_get::*;
46pub use args_sizes_get::*;
47pub use clock_res_get::*;
48pub use clock_time_get::*;
49pub use clock_time_set::*;
50pub use environ_get::*;
51pub use environ_sizes_get::*;
52pub use fd_advise::*;
53pub use fd_allocate::*;
54pub use fd_close::*;
55pub use fd_datasync::*;
56pub use fd_dup::*;
57pub use fd_event::*;
58pub use fd_fdstat_get::*;
59pub use fd_fdstat_set_flags::*;
60pub use fd_fdstat_set_rights::*;
61pub use fd_filestat_get::*;
62pub use fd_filestat_set_size::*;
63pub use fd_filestat_set_times::*;
64pub use fd_prestat_dir_name::*;
65pub use fd_prestat_get::*;
66pub use fd_read::*;
67pub use fd_readdir::*;
68pub use fd_renumber::*;
69pub use fd_seek::*;
70pub use fd_sync::*;
71pub use fd_tell::*;
72pub use fd_write::*;
73pub use path_create_directory::*;
74pub use path_filestat_get::*;
75pub use path_filestat_set_times::*;
76pub use path_link::*;
77pub use path_open::*;
78pub use path_readlink::*;
79pub use path_remove_directory::*;
80pub use path_rename::*;
81pub use path_symlink::*;
82pub use path_unlink_file::*;
83pub use poll_oneoff::*;
84pub use proc_exit::*;
85pub use proc_raise::*;
86pub use random_get::*;
87pub use thread_spawn::*;
88
89use tracing::{Span, debug_span, field, instrument, trace_span};