- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Operating System Review Problems
What is a process? Please draw a process state transition diagram with nine states in Unix SVR4?
Illustrated some scenarios where process switch occur?
Suppose there are three processes running in an operating system with multithreading as following:
Process ID Threads A T11, T12 B T21, T22 C T31, T32 If the multithreading is supported by user-level implementation and thread T11 is blocked, which thread may be scheduled to run next? If the multithreading is supported by kernel-level implementation, which thread may be scheduled to run next?
What is race condition? Give a program implementation to demonstrate the mutual exclusion enforced by Test and Set (or exchange) instruction or by semaphore?
Consider the following program:
boolean blocked[2];
int turn;
void P(int id)
{
while (true) {
blocked[id] = true;
while (turn != id){
while (blocked[1-id]) /* do nothing */;
turn = id;
}
/* critical section */
blocked[id] = false;
/* remainder */
}
}
void main()
{
blocked[0] = false;
blocked[1] = false;
turn = 0;
parbegin(P(0), P(1));
}
This software segment is the solution to the mutual exclusion problem for two processes. Find a counterexample(反例) that demonstrates that this solution is incorrect.
考虑进程0执行到blocked[id] = true这个语句是发生了进程切换,操作系统调度进程1运行。这种情况下会导致进程0和进程1同时进入临界区。
Give a solution to bounded producer-consumer problem with semaphore.
What is deadlock?
Banker algorithms? Safe state/unsafe state
Address mapping in paging system:
What is TLB?
Page replacement algorithms (Optimal/LRU/FIFO/CLOCK) in paging system.
LRU:
Replaces the page that has not been referenced for the longest time
By the principle of locality, this should be the page least likely to be referenced in the near future
Each page could be tagged with the time of last reference. This would require a great deal of overhead
CLOCK:
Additional bit called a use bit
When a page is first loaded in memory, the use bit is
您可能关注的文档
- 《操作系统教学资料》2013-CHAP5.pdf
- 《操作系统教学资料》2013-CHAP6.ppt
- 《操作系统教学资料》2013-CHAP8.pdf
- 《操作系统教学资料》2013-CHAP12.pdf
- 《操作系统教学资料》2013-CHAP52.ppt
- 《操作系统教学资料》2013-CHPA7.ppt
- 《操作系统教学资料》Operation System Review.doc
- 《操作系统教学资料》操作系统复习题-2.doc
- 《操作系统教学资料》操作系统复习题-5.doc
- 《操作系统教学资料》操作系统复习题-7.doc
- 2025至2030凸轮开关行业产业运行态势及投资规划深度研究报告.docx
- 2025至2030加热式足浴按摩器行业产业运行态势及投资规划深度研究报告.docx
- 2025至2030自动识别芯片行业发展趋势分析与未来投资战略咨询研究报告.docx
- 2025至2030航空复合材料产业市场深度调研及发展趋势与投资报告.docx
- 2025至2030艺术摄影服务行业发展趋势分析与未来投资战略咨询研究报告.docx
- 2025至2030芯片键合材料行业发展趋势分析与未来投资战略咨询研究报告.docx
- 2025至2030腻子膏行业产业运行态势及投资规划深度研究报告.docx
- 2025至2030自动心肺复苏装置行业发展趋势分析与未来投资战略咨询研究报告.docx
- 2025至2030脑电图耳机行业产业运行态势及投资规划深度研究报告.docx
- 2025至2030航空摄影行业产业运行态势及投资规划深度研究报告.docx
文档评论(0)