瀏覽代碼

add progs for lec2

main
chyyuu 11 年之前
父節點
當前提交
09ffe0ec51
共有 3 個檔案被更改,包括 13 行新增0 行删除
  1. +8
    -0
      related_info/lec2/Makefile
  2. 二進制
      related_info/lec2/hello
  3. +5
    -0
      related_info/lec2/hello.c

+ 8
- 0
related_info/lec2/Makefile 查看文件

@ -0,0 +1,8 @@
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

二進制
related_info/lec2/hello 查看文件


+ 5
- 0
related_info/lec2/hello.c 查看文件

@ -0,0 +1,5 @@
#include <stdio.h>
void main(void)
{
printf("hello world\n");
}

Loading…
取消
儲存