-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: apply code style fixes and update documentation
- Loading branch information
1 parent
06589bf
commit 5ead86a
Showing
15 changed files
with
285 additions
and
106 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,7 @@ | |
name = "ruxtask" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = [ | ||
"Yuekai Jia <[email protected]>", | ||
"AuYang261 <[email protected]>", | ||
] | ||
authors = ["Yuekai Jia <[email protected]>", "AuYang261 <[email protected]>"] | ||
description = "Ruxos task management module" | ||
license = "GPL-3.0-or-later OR Apache-2.0" | ||
homepage = "https://github.com/syswonder/ruxos" | ||
|
@@ -15,8 +12,15 @@ repository = "https://github.com/syswonder/ruxos/tree/main/modules/ruxtask" | |
default = ["fs"] | ||
|
||
multitask = [ | ||
"dep:ruxconfig", "dep:percpu", "dep:spinlock", "dep:lazy_init", "dep:memory_addr", | ||
"dep:scheduler", "dep:timer_list", "kernel_guard", "dep:crate_interface" | ||
"dep:ruxconfig", | ||
"dep:percpu", | ||
"dep:spinlock", | ||
"dep:lazy_init", | ||
"dep:memory_addr", | ||
"dep:scheduler", | ||
"dep:timer_list", | ||
"kernel_guard", | ||
"dep:crate_interface", | ||
] | ||
irq = [] | ||
tls = ["ruxhal/tls"] | ||
|
@@ -53,16 +57,16 @@ kernel_guard = { version = "0.1.0", optional = true } | |
crate_interface = { version = "0.1.1", optional = true } | ||
flatten_objects = { path = "../../crates/flatten_objects" } | ||
spin = "0.9" | ||
axio ={ path = "../../crates/axio" } | ||
axio = { path = "../../crates/axio" } | ||
lazy_static = { version = "1.4", features = ["spin_no_std"] } | ||
page_table = { path = "../../crates/page_table" } | ||
page_table_entry = { path = "../../crates/page_table_entry" } | ||
|
||
bitmaps = { version = "3.2", default-features = false } | ||
# for testing | ||
axfs_vfs = { path = "../../crates/axfs_vfs"} | ||
axfs_vfs = { path = "../../crates/axfs_vfs" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8" | ||
ruxhal = { path = "../ruxhal", features = ["fp_simd"] } | ||
ruxtask = { path = ".", features = ["test"] } | ||
|
Oops, something went wrong.