【2014-11-23】《The Hardware/Software Interface》– Section 8 (continue)
时间:
2014-11-23 15:37:21
阅读:
215
评论:
收藏:
0
[点我收藏+]
- Exceptions:
- An exception is transfer of control to the operating system in response to some event.
- exception processing by exception handler



- Process(进程)
- Process abstraction provides an interface between the program and the underlying CPU + Memory.
- Definition: A process is an instance of a running program
- Process provides each program with two key abstractions:
- Logical control flow
- Each process seems to have exclusive use of the CPU
- Private virtual address space
- Each process seems to have exclusive use of main memory
- Context Switching
- Processes are managed by a shared chunk of OS code called the kernel
- Control flow passes from one process to another via a context switch

- Creating New Processes & Programs

【2014-11-23】《The Hardware/Software Interface》– Section 8 (continue)
原文:http://www.cnblogs.com/sjtujoe/p/4116541.html