MCPcopy Create free account
hub / github.com/chyyuu/os_kernel_lab / thread_a

Function thread_a

user/src/bin/threads.rs:11–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9use user_lib::{exit, thread_create, waittid};
10
11pub fn thread_a() -> ! {
12 for _ in 0..1000 {
13 print!("a");
14 }
15 exit(1)
16}
17
18pub fn thread_b() -> ! {
19 for _ in 0..1000 {

Callers

nothing calls this directly

Calls 1

exitFunction · 0.85

Tested by

no test coverage detected