zoukankan      html  css  js  c++  java
  • Lecture 2 Introduction

    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

     
  • 相关阅读:
    【2017下长沙学院软工3班_助教博客】 第一次作业成绩公示
    《构建之法》读书笔记第3章
    《构建之法》读书笔记第1、2章
    【2017下集美大学软件工程1413软工实践_助教博客】 第0次作业成绩公示
    软件工程——构建之法高分Tips
    第09组 Alpha冲刺(1/6)
    2019 SDN上机第2次作业
    第09组 团队Git现场编程实战
    2019 SDN上机第一次作业
    第09组 团队项目-需求分析报告
  • 原文地址:https://www.cnblogs.com/whuyt/p/4864075.html
Copyright © 2011-2022 走看看