refactor: replace all stdint::uint32_t into short and more manageable u32_t
[lunaix-os.git] / lunaix-os / kernel / process / dummy.c
1 void
2 my_dummy()
3 {
4     while (1) {
5         asm("hlt");
6     }
7 }