This website requires JavaScript.
Explore
Help
Sign In
vinzenz
/
redox
Watch
0
Star
0
Fork
You've already forked redox
0
Code
Issues
Pull requests
Actions
Packages
Projects
Releases
Wiki
Activity
f2ca411cd6
redox
/
init
/
src
/
main.rs
9 lines
113 B
Rust
Raw
Normal View
History
Unescape
Escape
Implement sched_yield, enable interrupts in userspace
2016-09-11 03:18:59 +02:00
use
std
::
thread
;
Compile init as executable using libstd
2016-09-10 01:13:16 +02:00
pub
fn
main
(
)
{
println!
(
"
Hello, World!
"
)
;
Implement sched_yield, enable interrupts in userspace
2016-09-11 03:18:59 +02:00
loop
{
thread
::
yield_now
(
)
;
}
Compile init as executable using libstd
2016-09-10 01:13:16 +02:00
}
Reference in a new issue
Copy permalink