《操作系统》的实验代码。
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
302 B

  1. .text
  2. .globl kernel_thread_entry
  3. kernel_thread_entry: # void kernel_thread(void)
  4. pushl %edx # push arg
  5. call *%ebx # call fn
  6. pushl %eax # save the return value of fn(arg)
  7. call do_exit # call do_exit to terminate current thread