3.1 Using the program shown in the Figure3.30, explain what the output will be at LINE A 答案:LINE A 处的输出是PARENT: value = 5. 解析: 此问题的相关知识有进程创建.fork函数. 当父进程调用fork函数时, 新创建的子进程几乎但不完全与父进程相同, 子进程会获得一份父进程用户级虚拟地址空间的拷贝, 但是此拷贝是独立的, 拷贝内容包括文本.数据和bss段.堆以及用户栈. 所以在图…
3.2 Including the initial parent process, how many processes are created by the program shown in Figure? 答案: 会创建8个进程. 解析:相关知识: fork函数的执行原理 fork函数执行一次, 返回两次,父进程返回子进程的PID, 子进程返回0(至于返回值为什么不同, 这与do_fork函数有关,具体是怎么一回事我还不太清楚).程序中可利用此性质来区别程序的父进程和子进程. 当一个进程执行…
3.12 Including the initial parent process, how many processes are created by the program shown in Figure 3.32? 答案: 共16个进程. 解析: 根据之前所学到的关于fork的知识去画进程图, 要注意的一点就是, fork的子进程的程序计数器里的指令和父进程的相同, 所以每次fork之后, 子进程里i的值都会继续增加.例如, 第一个进程, i=0时, fork的子进程的i会继续++, 从1…
3.5 When a process creates a new process using the fork() operation, which of the following state is shared between the parent process and the child process? a. Stack b.Heap c.Shared memory segments 答案:c.Shared memory segments. 解析:fork一个新的子进程时, 子进程会得…
3.3  Original version of Apple's mobile iOS operating system provied no means of concurrent processing. Discuss three major complications that concurrent processing adds to an operating system. 答案:此问题不太熟悉, 应该是问向操作系统中加入并发处理后的三个主要并发症是什么. 在网上搜索了一下, 得到了一…
3.9 Describe the actions token by a kernel to content-switch between processes. 答案: 内核在进行进程上下文切换时, 首先将当前进程的上下文保存在内存中的PCB中, 然后再将下一个进程在内存中的PCB里的上下文读取出来. 上下文包含CPU寄存器里的内容, 堆, 用户栈, 内存管理信息, 数据, 文本.…
3.8 Describe the differences among short-term, medium-term, and longterm scheduling. 答案: 长期调度决定哪些进程进入到系统中,. 中期调度决定进入到系统中的进程哪些可以竞争处理器, 即哪些进程可以进入到就绪队列. 短期调度决定将处理器分配给就绪队列中的哪些进程. 扩展: 长期调度(long-term scheduling)又叫做高级调度(High-level scheduling)或作业调度(job sched…
3.4 The Sun UltraSPARC processor has multiple register sets. Describe what happens when a context switch occurs if the new context is already loaded into one of the register sets. What happens if the new context is in memory rather than in a register…
1.对象就是实例,什么是实例 类运行的过程就是实例化的过程,实例化产生的结果就是产生了一个实例 class的牛逼之处就是不用手动的return,他会加载完函数之后,自动return  __init__这个函数里面的字典,字典当中封装了数据属性 函数属性就是属于类的 2.实例化 只要用类名加()的方式运行,(在类中这个运行叫实例化)首先会运行__init__这个函数 class Chinese:#定义了Chinese这个类 dang="当"#定义了一个数据属性dang def __ini…
类的继承案例解析,python相关知识延伸 作者:白宁超 2016年10月10日22:36:57 摘要:继<快速上手学python>一文之后,笔者又将python官方文档认真学习下.官方给出的pythondoc入门资料包含了基本要点.本文是对文档常用核心要点进行梳理,简单冗余知识不再介绍,作者假使你用c/java/c#/c++任一种语言基础.本系列文章属于入门内容,老鸟可以略看也可以略过,新鸟可以从篇一<快速上手学python>先接触下python怎样安装与运行,以及pycharm…