준비물
- app_my_module.c
- my_module.c
- Makefile
코드 파일과 Makefile 파일을 작성 하시고 밑 내용대로 명령어를 실행 하시면 됩니다.
| 파일 시스템 fat | |
| a1: http://ji007.tistory.com/entry/FAT32-File-System | |
| a2: http://egaoneko.github.io/os/2015/05/24/linux-starter-guide-4.html | |
| a3: http://cappleblog.co.kr/135 | |
| b1: http://snsmo.tistory.com/28 | |
| b2: https://www.linux.co.kr/home/lecture/index.php?cateNo=&secNo=&theNo=&leccode=10213 | |
| #include <stdio.h> | |
| #include <string.h> | |
| int ffs(int x) | |
| { | |
| int r = 1; | |
| if(!x) | |
| return 0; | |
| if(!(x & 0xffff)) |
| #if 1 | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| struct rb_node | |
| { | |
| unsigned long rb_parent_color; | |
| struct rb_node *rb_right; | |
| struct rb_node *rb_left; | |
| }; |
파일시스템의 버디 기법에 사용된 배열 어래이 관련 내용
#() <-- 확실 하지 않음.
| #if 1 | |
| // | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct _node{ | |
| int data; | |
| struct _node *left; | |
| struct _node *right; | |
| }NODE; |
| //********************************************************************* | |
| // My ls Ver 0.1.0 | |
| //2007 Made By Paek Jae-Dong | |
| //E-mail: pjd@kw.ac.kr | |
| //Blog: rabe.egloos.com | |
| //********************************************************************* | |
| // My ls Ver 0.2.1 | |
| //2015 Made By kimhoki | |
| //E-mail: exampleohki@gmail.com |