Lecture 2 Introduction
生活随笔
收集整理的這篇文章主要介紹了
Lecture 2 Introduction
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
What is an Operating System? ? 1. Referee – Manage sharing of resources, Protection, Isolation ? Resource allocation, isolation, communication 2. Illusionist – Provide clean, easy to use abstractions of physical resources ? Infinite memory, dedicated machine ? Higher level objects: files, users, messages ? Masking limitations, virtualization 3. Glue – Common services ? Storage, Window system, Networking ? Sharing, Authorization ?Look and feel
?
Four fundamental OS concepts
?
1. Thread – Single unique execution context – Program Counter, Registers, Execution Flags, Stack 2. Address Space w/ Translation – Programs execute in an address space that is distinct from the memory space of the physical machine 3. Process – An instance of an executing program is a process consisting of an address space and one or more threads of control 4. Dual Mode operation/Protection – Only the “system” has the ability to access certain resources – The OS and the hardware are protected from user programs and user programs are isolated from one another by controlling the translation from program virtual addresses to machine physical addresses??
ps: difference between threads 與 processes
-?process encapsulate one or more threads sharing process resources -?Processes provides memory protection, threads more efficient than processes?Some other BIG OS Concepts
??Interrupt handlers (including syscall and trap)
? ???File System
– Integrates processes, users, cwd, protection
? Key Layers: OS Lib, Syscall, Subsystem, Driver
– User handler on OS descriptors
? Process control
– fork, wait, signal, exec
? Communication through sockets
? Client-Server Protocol
轉(zhuǎn)載于:https://www.cnblogs.com/whuyt/p/4864075.html
總結(jié)
以上是生活随笔為你收集整理的Lecture 2 Introduction的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数据结构之图的应用:关键路径
- 下一篇: 数据结构之选择排序:堆排序