《操作系统》的实验代码。
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

8 lignes
184 B

il y a 11 ans
  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