os

2022/06/23

What is an operating system?

Making it easy to run programs Allowing programs to share memory Enabling programs to interact with devices And other fun, interesting things

Process

</ox-hugo/2022-06-23_17-41-04_PX82iOPpRSy_Nojj6cUsog_ba42e04ce1e84c528ee5866abaf69df1_intro-to-os-1–virtualization-processes-and-execution-processes.pdf.pdf>

What is process?

A process is just a running application.

Memory Registers

Time-sharing

allows users to run as many concurrent programs as they like but at the risk of performance loss.

Process API

operating system controls processes using the process api

common way to reate a new process in unix-based os: fork(), exec()

fork()

creates a new process every process has a PID(process identifier)

wait()

exec()

runs a completely different program

Virtualization

os transforms a physical resource into a more general, pwoerful, and user-friendly virtual form.

user & kernel mode

user mode

limits what the code can do

kernel mode

where the os runs. code in this mode can freely perform privileged operations

system call

programs running in user mode use system calls to ask for privileged operations from the kernel.

trap

the trap instruction jumps into the kernel and switches to kernel mode.

trap table: a trap table is created during the boot process. machines start in kernel mode so they can perform sensitive tasks. the kernel lets the hardware know about the location of trap handlers

A trap table tells the hardware what code to run when specific events occur.

A trap instruction jumps into the kernel and raises the privilege level to kernel-mode, and calls return-from-trap to go back into user-mode.

switching between processes

cooperative approach: waiting for system calls

waiting for system calls: a cooperative approach. trusting system processes to occasionally give up control of the CPU in order to perform other tasks.

non-cooperative approach: the os takes over

A timer-interrupt is a built-in timer that raises an interrupt after a specified number of milliseconds. This signal will stop the current process. The interval is long enough for tasks to complete except for things like an infinite loop.

Context Switch

During all of this, there are two types of register saving and restoration that happen:

limited direct execution

</ox-hugo/2022-06-29_21-02-28_RyM3OGniSOCjNzhp4ojg0w_5080c5e0d33b4c5ca8d90d0b08c8a8f1_intro-to-os-1–virtualization-processes-and-execution-direct-execution.pdf.pdf>


이 문서와 연결된