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

8 行
184 B

  1. all: hello.c
  2. echo "compile and watch the syscalls from hello"
  3. gcc -o hello hello.c
  4. strace -c ./hello
  5. echo "watch the interrupts in linux"
  6. more /proc/interrupts
  7. clean:
  8. rm ./hello