Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
educg-net-17064-1466468
Alien-3532
Commits
35bea9ec
Commit
35bea9ec
authored
2 years ago
by
陈林峰
Browse files
Options
Download
Patches
Plain Diff
feat: add pipe/dup support
fix: fix bugs about lock -- disable interrupt test: add test from rcore
parent
42273125
main
dev
dev_no_dbfs
test-main
No related merge requests found
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
Cargo.toml
+3
-1
Cargo.toml
apps/pipetest/Cargo.toml
+9
-0
apps/pipetest/Cargo.toml
apps/pipetest/src/main.rs
+46
-0
apps/pipetest/src/main.rs
apps/pipetest2/Cargo.toml
+9
-0
apps/pipetest2/Cargo.toml
apps/pipetest2/src/main.rs
+77
-0
apps/pipetest2/src/main.rs
doc/os.md
+10
-10
doc/os.md
kernel/build.rs
+3
-3
kernel/build.rs
kernel/src/config.rs
+6
-4
kernel/src/config.rs
kernel/src/driver/uart1.rs
+4
-5
kernel/src/driver/uart1.rs
kernel/src/fs/mod.rs
+8
-2
kernel/src/fs/mod.rs
kernel/src/ipc/mod.rs
+74
-0
kernel/src/ipc/mod.rs
kernel/src/ipc/pipe.rs
+227
-0
kernel/src/ipc/pipe.rs
kernel/src/lib.rs
+1
-0
kernel/src/lib.rs
kernel/src/sync/mod.rs
+1
-0
kernel/src/sync/mod.rs
kernel/src/sync/mutex.rs
+51
-0
kernel/src/sync/mutex.rs
kernel/src/syscall.rs
+42
-36
kernel/src/syscall.rs
kernel/src/task/process.rs
+21
-12
kernel/src/task/process.rs
modules/gmanager/src/lib.rs
+37
-8
modules/gmanager/src/lib.rs
userlib/src/ipc/mod.rs
+19
-0
userlib/src/ipc/mod.rs
userlib/src/lib.rs
+1
-0
userlib/src/lib.rs
with
649 additions
and
81 deletions
+649
-81
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets