정리필요2
-
블록할당 3가지방법정리필요2 2008. 9. 1. 23:16
• 연속할당(contiguous allocation): p378(11.15) » 디스크 탐구시간(seek time)이 최소 » 순차접근과 직접접근 모두 » 동적 기억장치 할당 » 외부단편 문제 » 파일 크기 결정(preallocation) 문제 -> extent(다른 연속할당 덩어리)로 연결 파일의 블록주소 : block들의 clusters로 보완 » 신뢰성 떨어짐 -> doubly linked list로 보완 » 직접 접근이 비효율적 » (예) FAT(File Allocation Table): p382(11.17) MS-DOS, OS/2각 • 각 partition 시작 부분에 • 테이블의 각 항복 : • 잦은 참조로 인해 caching 해야 함 • 색인 할당(indexed allocation) : p3..
-
운영체제 연습문제 풀이 (in English)정리필요2 2008. 9. 1. 23:10
1.1 What are the three main purposes of an operating system? Answer: To provide an environment for a computer user to execute programs on computer hardware in a convenient and efficient manner. To allocate the separate resources of the computer as needed to solve the problem given. The allocation process should be as fair and efficient as possible. As a control program it serves two major functi..
-
실습4정리필요2 2008. 9. 1. 23:08
#include #include static GLfloat theta[] = {0.0, 0.0, 0.0}; static GLint axis =1; static GLfloat theta_degree=0.1; static GLfloat zoom_factor = 0.0; static GLfloat transZ = 0.0; GLfloat ambientLight[] = {0.25f, 0.25f, 0.25f, 1.0f}; //주변광 GLfloat diffuseLight[] = {0.9f, 0.9f, 0.9f, 1.0f}; //난반사 GLfloat specular[] = {1.0f, 1.0f, 1.0f, 1.0f}; //정반사 GLfloat spotlightPos[] = {-10.0f, 3.0f, 5.0f, 1.0f..
-
실습3정리필요2 2008. 9. 1. 23:07
#include static GLfloat theta[] = {0.0, 0.0, 0.0}; static GLint axis =1; static GLfloat theta_degree=0.1; static GLfloat zoom_factor = 0.0; static GLfloat transZ = 0.0; GLfloat vertices[8][3] = {{-1.0, -1.0, 1.0}, {-1.0, 1.0, 1.0}, {1.0, 1.0, 1.0}, {1.0, -1.0, 1.0}, {-1.0, -1.0, -1.0}, {-1.0, 1.0, -1.0}, {1.0, 1.0, -1.0}, {1.0, -1.0, -1.0} }; GLfloat colors[8][3] = {{0.0, 0.0, 0.0}, {1.0, 0.0, 0..
-
과제5 연습문제 10번 35번 41번, 52번 풀이정리필요2 2008. 9. 1. 23:05
7.10 Using the series of references given in Exercise 7.9, show the hits and misses and final cache contents for a direct-mapped cache with four-word blocks and a total size of 16 words. (series of references given in Exercise 7.9 : 2, 3, 11, 16, 21, 13, 64, 48, 19, 11, 3, 22, 4, 27, 6, 11) 7.10 문제 7.9의 참조 순서를 이용하여, 4워드 블록으로 구성되고 전체크기가 16워드인 직접 사상 캐쉬에 대해 적중이나 실패를 표시하고 캐쉬의 마지막 내용을 보여라. (문제 7.9의 참..
-