このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10213903403
/
os_kernel_lab
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
add progs for lec2
main
chyyuu
11年前
親
bd9d82beda
コミット
09ffe0ec51
3個のファイルの変更
、
13行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
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
"
)
;
}
書き込み
プレビュー
読み込み中…
キャンセル
保存