Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR for Rawposix(dispatcher.rs, fs_call.rs, misc.rs) #47

Merged
merged 41 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3953794
integrated into lind-wasm
qianxichen233 Sep 16, 2024
519e828
futex implementation
qianxichen233 Sep 16, 2024
190cd40
update dispatcher.rs
Sep 20, 2024
fb549df
clone impl inside rawposix
qianxichen233 Sep 22, 2024
48f34e7
moved clone impl into wasmtime
qianxichen233 Sep 23, 2024
9e3e03d
update
Sep 23, 2024
b80df72
resolve conflict
qianxichen233 Sep 24, 2024
cdac30d
resolved conflict
qianxichen233 Sep 24, 2024
c7e46ee
fixed merged version
qianxichen233 Sep 24, 2024
9fe1d73
add some syscalls
qianxichen233 Sep 24, 2024
adce7bd
support more syscalls for lind-wasm
qianxichen233 Sep 24, 2024
0d51b64
fixed librawposix
qianxichen233 Sep 25, 2024
55be5f8
fixed sleep
Sep 30, 2024
48d2477
delete some reference
Oct 1, 2024
db9fbc4
delete repeat recv
Oct 1, 2024
8d36a35
delete repeat exit exec
Oct 1, 2024
0300e71
some cleanup
qianxichen233 Oct 1, 2024
e778e3b
restore signal
qianxichen233 Oct 1, 2024
fe740a5
merged from main
qianxichen233 Oct 1, 2024
e51cbef
move futex and nanosleep from misc.rs to fs_call.rs
Oct 1, 2024
dbd4a0a
merged from main
qianxichen233 Oct 1, 2024
504f7cc
delete misc.rs line 28
Oct 1, 2024
112476b
delete comment for disrpatcher.rs
Oct 2, 2024
78f3b5f
delete comment for src/lib.rs
Oct 2, 2024
1288f49
add newline to mod.rs
Oct 2, 2024
6f94013
add comment for nanosleep_time64 syscall
Oct 2, 2024
e50487e
change type function from union to u64
Oct 21, 2024
eb7121c
clean up & resolve comments
qianxichen233 Oct 22, 2024
ef50f3b
clean up lib.rs
qianxichen233 Oct 27, 2024
e9a2bb2
comment and new name for type.rs
Oct 30, 2024
9714a5b
long comment for type.rs
Oct 30, 2024
77f8f07
delete u64 to string function and use another function from type.rs
Oct 31, 2024
ee2801d
add newline
Nov 4, 2024
79cac84
clean up lib.rs
qianxichen233 Nov 4, 2024
39d14a3
add author name and clean up
Nov 6, 2024
40416fe
comment for lind_syscall_api function
Nov 6, 2024
2751d62
delete comment for types.rs
Nov 6, 2024
7346874
add name
Nov 6, 2024
de3b35a
update comment for lind_syscall_api
qianxichen233 Nov 7, 2024
b9376f1
delete macro and unsafe
Nov 11, 2024
538e1a3
resolve conflict
Nov 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rustposix"
name = "rawposix"
version = "0.1.0"
authors = ["Nicholas Smith Renner <[email protected]>", "Jonathan Eli Singer <[email protected]>", "Tristan J. Brigham <[email protected]>"]
authors = ["Nicholas Smith Renner <[email protected]>", "Jonathan Eli Singer <[email protected]>", "Tristan J. Brigham <[email protected]>", "Yaxuan Wen <[email protected]>", "Runbin Yuan <[email protected]>", "Qianxi Chen <[email protected]>", "Yuchen Zhang <[email protected]>"]
edition = "2018"

[lib]
Expand Down
1 change: 1 addition & 0 deletions mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod rawposix;
Loading