Unit 5 OS Flashcards
What is the computer Kernel
It’s a computer program at the core of the computers operating system.
It always resides in memory
It connects the application software to the hardware of the computer
What happens when a computer first starts running
It will load a bootstrap program stored in rom.
- It initializes all aspects of the system.
- knows how to load the OS
- Locates the kernel and loads it into memory
How are events signalled to the OS
Using interrupts
What does an interrupt do?
They interrupt the computer and what’s happening
How is an interrupt triggered
It’s an event triggered by a hardware signal sent to the CPU from an external device
What are the two most common interrupts
- Generated by an Input/Output Device
- Generated by a countdown timer to implement time sharing
What happens when the CPU gets an interrupt
It will save the work it was doing before the interrupt.
It will determine the type of interrupt
Handles the Interrupt
Resumes
What are the two types of interrupts
Polling - a device is ready to be read, it does not know which device is ready so it polls all of them
Vectored - OS is told which device is ready
What is a trap
It’s a software interrupt
What is an example of a trap
- Dividing by zero
- Executing invalid opcode
- Arithmetic overflow
What is multi programming
It’s the ability to run multiple programs on the same computer.
- Keeps multiple programs loaded in memory
- Os switches execution between them
- CPU never stays IDLE
What is Time Sharing
An extension of multiprogramming
What is virtual memory?
Memory that is loaded onto Non-Volatile memory. Usually it’s the non used memory moved onto a SWAP file
What are the two modes of operation (Dual-Mode Operation)
- User Mode
- Kernel Mode
What mode is the computer on at boot time
Kernel Mode
In what mode are privileged instructions ran?
In kernel mode only
What are some privileged instructions
- IO Control
- Timer Management
- Interrupt Management
- Context Switching
What are some non-privileged instructions
- Reading the status of the processor
- Reading the System Time
- Generate any trap instruction
- Sending the final printout of Printer
What is an example of process control in an OS System Calls
- Create/terminate a process
- Load and execute
- Get/Set process attributes
- Allocate and free memory
What is an example of process control in an OS System Calls
- Create/terminate a process
- Load and execute
- Get/Set process attributes
- Allocate and free memory
What is an example of file management in an OS System Calls
- Create/delete files
- Open Close Files
- Read, Write, Reposition
- Get file attributes
What is an example of device management in an OS System Calls
- Request/Release a device
- Read, Write, Reposition
- Get/Set device attributes
- Logically attach or detach devices
What is an example of information maintenance in an OS System Calls
- Get time or set time/ date
- Get/Set system data
- Get/Set process file or device attributes
What is an example of communications in an OS System Calls
- Cread/delete communication connections
- Send receive messages
- Transfer status information
- Attach or detach remote devices
What is an example of Protection in an OS System Calls
- Get file permissions
- Set file permissions
What are the process states?
- Running
- Ready
- Blocked
What is the running state of a process
It’s where a process is running on a processor. Instructions are currently being executed
What is the Ready state of a process
It’s whe the process is waiting to be assigned to a processor
What is the Blocked state of a process
It’s where the process is waiting on some event to happen. Ex: an IO Request