|
while(k<num){ // fcfs 스케쥴링
if (count < db[k].cpu_arr)
{
count = db[k].cpu_arr;
}
count = count + db[k].cpu_time;
db[k].turn = count - db[k].cpu_arr;
k++;
}
sort_num(db,num,1); // 프로세스 번호순으로 제정렬
간단한 FCFS 처리 소스입니다.
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2010.09.27
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
typedef struct cpu{
int cpu_num;
int cpu_arr;
int cpu_time;
int turn;
}cpu;
while(k<num){ // fcfs 스케쥴링
if (count < db[k].cpu_arr)
{
count = db[k].cpu_arr;
}
count = count + db[k].cpu_time;
db[k].turn = count - db[k].cpu_arr;
k++;
}
F
|
- 페이지 1페이지
- 가격 4,000원
- 등록일 2010.09.27
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
중앙처리장치 버스트를 끝내도록 허용한다. 선점 SJF 알고리즘을 최소 잔여 시간 우선 스케줄링이라고 부른다.
10.Explain the differences in the degree to which the following scheduling 미해갸소가 discriminate in favor of short processes:
a. FCFS
-이 방법에서는 중앙처
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2004.11.12
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
2) Noncontiguous allocation
3) Paging / Segmentation
4) Demand Paging
5) Page Table / TLB
2. Scheduling
▲ Scheduling algorithm
① FCFS
② SJF(Shortest-Job-First Scheduling)
③ Priority Scheduling
④ Round-Robin Scheduling
3. Memory Protection
4. Command Interpreter
5. File Alloc
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2004.02.10
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
scheduling? How would you modify SSTF, SCAN, and C-SCAN to
include latency optimization?
Answer: Most disks do not export their rotational position
information to the host. Even if they did, the time for this
information to reach the scheduler would be subject to
imprecision and the time consumed by
|
- 페이지 29페이지
- 가격 3,000원
- 등록일 2010.05.31
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|