halt.c

来自「nachos test nachos 有关实验」· C语言 代码 · 共 21 行

C
21
字号
/* halt.c *	Simple program to test whether running a user program works. *	 *	Just do a "syscall" that shuts down the OS. * * 	NOTE: for some reason, user programs with global data structures  *	sometimes haven't worked in the Nachos environment.  So be careful *	out there!  One option is to allocate data structures as  * 	automatics within a procedure, but if you do this, you have to *	be careful to allocate a big enough stack to hold the automatics! */#include "syscall.h"intmain(){    Halt();    /* not reached */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?