Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
|
- all: hello.c
- echo "compile and watch the syscalls from hello"
- gcc -o hello hello.c
- strace -c ./hello
- echo "watch the interrupts in linux"
- more /proc/interrupts
- clean:
- rm ./hello
|