이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10213903403
/
os_kernel_lab
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
add progs for lec2
main
chyyuu
11 년 전
부모
bd9d82beda
커밋
09ffe0ec51
3개의 변경된 파일
과
13개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
related_info/lec2/Makefile
BIN
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
BIN
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
"
)
;
}
쓰기
미리보기
불러오는 중...
취소
저장