Linux Kernal Internal > Ch3 태스크 관리(2)
☆★☆2016.01.07 작성☆★☆ ☆★☆참고책 _리눅스 커널 내부구조(저자_백승재, 최종무)☆★☆ 5. 태스크 문맥 * system context - 태스크 정보 유지 위해 할당한 자료구조 ex) task_struct, 파일 디스크립터, 파일 테이블, 세그먼트 테이블, 페이지 테이블... * memory context - text, data, stack, heap 영역, 스왑공간... * hardware context - 문맥 교환시, 태스크 현재 실행 위치 정보 유지 * task_struct 자료 구조 변수 - /usr/src/linux-headers-3.19.0-25/include/linux/sched.h 에서 확인 가능 ① task identification - 태스크를 인식하기 위한 변수들 ex..