使用 JavaScript能使本网站更好的工作。
首页
广场
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10213903403
/
os_kernel_lab
关注
1
点赞
0
派生
0
代码
话题
0
合并请求
0
版本发布
0
百科
动态
浏览代码
add progs for lec2
main
chyyuu
11 年前
父节点
bd9d82beda
当前提交
09ffe0ec51
共有
3 个文件被更改
,包括
13 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+8
-0
related_info/lec2/Makefile
二进制
related_info/lec2/hello
+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
"
)
;
}
撰写
预览
正在加载...
取消
保存