We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52bcb59 commit 4374bd1Copy full SHA for 4374bd1
kernel/src/syscall/misc.rs
@@ -77,7 +77,7 @@ impl Syscall {
77
while count < len {
78
let rand = rand();
79
for offset in 0..4 {
80
- ret.push(rand >> (offset * 2));
+ ret.push((rand >> (offset * 2)) as u8);
81
count += 1;
82
}
83
user/dadk/config/held-0.1.0.dadk
@@ -0,0 +1,23 @@
1
+{
2
+ "name": "Held",
3
+ "version": "0.1.0",
4
+ "description": "中断文本编辑器",
5
+ "task_type": {
6
+ "BuildFromSource": {
7
+ "Git": {
8
+ "url" : "https://git.mirrors.dragonos.org.cn/DragonOS-Community/Held.git",
9
+ "revision": "76304e995f"
10
+ }
11
12
+ },
13
+ "depends": [],
14
+ "build": {
15
+ "build_command": "make install-dragonos"
16
17
+ "clean": {
18
+ "clean_command": "make clean"
19
20
+ "install": {
21
+ "in_dragonos_path": "/"
22
23
+}
0 commit comments