XINU
xdone.c
Go to the documentation of this file.
1 
5 #include <xinu.h>
6 
10 void xdone(void)
11 {
12  kprintf("\n\nAll user processes have completed.\n\n");
13  halt(); /* Halt the processor */
14 }
syscall kprintf(char *fmt,...)
ポーリングI/Oを使用して、フォーマットされた文字列をコンソールに出力する。
Definition: kprintf.c:98
全てのシステムヘッダファイルをインクルードする。
void halt(void)
システムを停止させる(intr.Sに定義がある)
void xdone(void)
最終プロセスの終了時、システム終了メッセージを表示する。
Definition: xdone.c:10