COE128 Exam - 2 Flashcards
A program in execution
Process
Is the unit of execution within a process
Thread
As a process executes, _________.
it changes state
Defined in part by the current activity of that process.
The state of process
The process is being created
New
Instructions are being executed
Running
The process is waiting for some even to occur ( such as an I/O completion or reception of a signal).
Waiting
The process is waiting to be assigned to a processor
Ready
The process has finished execution
Terminated
Each process is represented in the OS by a _________________ - also called a _______________.
Process Control Block, Task Control Block
The state may be new, ready, running, waiting, halted, and so on.
Process State
Indicated the address of the next instruction to be executed for this process.
Program Counter
Tells us the registers that are being used by a particular process.
CPU Registers
This information includes a process priority, pointers, to scheduling queues, and any other scheduling parameters.
CPU-Scheduling Information
This information may include such information as the value of the base and limit registered, the page tables, or the segment table, depending on the memory system used by the operating system.
Memory-Management Information
This information includes the amount of CPU and real time used, time limits, account numbers, job or process numbers, and so on.
Accounting Information
This information includes the list of I/O devices allocated to the process, a list of open files, and so on.
I/O Status Information
The objective of _____________ is to have some process running at all times, to maximize CPU utlization.
Multiprogramming
The objective of ____________ is to switch the CPU among processes so frequently that users can interact users can interact with each program while it is running.
Time Sharing
Selects an available process (possibly from a set of several available processes) for program execution on the CPU.
Process Scheduler
For a ____________, there will never be more than one running process.
Single-Processor System
If there are ___________, the rest will have to wait until the CPU is free and can be rescheduled.
more processes
Set of all the processes in the system.
Job Queue
Set of all processes residing in main memory, ready and waiting to execute.
Ready Queue
Set of processes waiting for an I/O device.
Device Queue
________ causes the OS to change a CPU from its current task and to run a _________.
Interrupts, kernel routine
When a interrupt occurs, the system needs to save the current context of the process running on the CPU. So that it can restore that context when its process is done, essentially ____________.
Suspending the process and then resuming it
It is represented in the PCB (Process Control Block) of the process.
Context
Switching the CPU to another process requires performing a state save of the current process and a state restore of a different process.
Context Switch
_____________ is pure overhead, because the system does no useful work while switching.
Context-Switch Time
Speed varies from machine to machine depending on:
- Memory Speed
- Number of registers that must be copied.
- Existence of special instructions.
A process may create several new processes, via a _____________, during the course of execution.
create-process system call
The creating process is called a _________.
Parent Process
The new processes are called the ___________.
Children of that process
Each of these new processes may in turn create other processes, forming a ___________.
Tree of Processes
Most OS identity process according to a unique __________ which is typically an integer number.
Process identifier (PID)
When a process creates a new process, two (2) possibilities exist for execution:
- The parent continues to execute concurrently with its children.
- The parent waits until some of all its children have terminated.
There are two (2) possibilities for the address space of the new process:
- The child process is a duplicate of the parent process(it has the same program and data as the parent).
- The child process has a new program loaded into it.
A process terminates when it finishes executing its final statement and asks the OS to delete it by using the _____________.
exit() system call
The process may return a _________ to its parent process (via the _____________)
status value, wait() system call
All the resources of the process including physical and virtual memory, open files, and I/O buffers are _____________.
deallocated by the OS
A process can cause the termination of another process via an _____________.
Appropriate System Call
A parent may terminate the execution of one of its children for variety of reasons, such as these:
- The child has exceeded its usage of some of the resources that it has been allocated.
- The task assigned to the
child is no longer required. - The parent is exiting, and the OS does not allow a child to continue if its parent terminates.
Cannot affect or be affected by other processes executing in the system.
Independent Process
Can affect or be affected by other processes executing in the system.
Cooperating Process
Several reasons for providing an environment that allows process cooperation:
- Information Sharing
- Computation Speedup
- Modularity
- Convenience
Cooperating processes require an ____________ mechanism that will allow them to exchange data and information.
Interprocess Communication (IPC)
Two (2) Fundamentals Models of Interprocess Communication
- Shared Memory
- Message Passing
A region of memory that is shared by cooperating processes is established.
Shared Memory
Communication takes place by means of messages exchanged between the cooperating processes.
Message Passing
Interprocess communication using shared memory requires _________________ to establish a region of shared memory.
communicating process
Other processes that wish to communicate using this shared-memory segment must ____________.
attach it to their address space.
Tries to prevent one process from accessing another process’s memory
Operating System
Shared Memory requires that _____________________.
two or more processes agree to remove this restriction
A ___________ produces information that is consumed by a ______________.
Producer process, Consumer Process
One solution to the producer-consumer problem uses ______________.
Shared Memory
To allow producer and consumer processes to run _______________, we must have available a _________ of items that can be filled by the producer and emptied by the consumer.
concurrently, buffer
The producer and consumer must be __________, so that the consumer does not try to consume an item that has not yet been produced.
synchronized
Two (2) Kinds Of Buffer
- Unbounded Buffer
- Bounded Buffer
Places no practical limit on the size of the buffer. The consumer may have to wait for new items, but the producer can always produce new items.
Unbounded Buffer
Assumes a fixed buffer size. In this case, the consumer must wait if the buffer is empty, and the producer must wait if the buffer is full.
Bounded Buffer
Provides a mechanism to allow processes to communicate and to synchronize their actions without sharing the same address space.
Message Passing
Message passing is particularly useful in a ___________, where the communicating process may reside on different computers connected by a network.
Distributed environment
A message-passing facility provides at least two (2) operations:
- Send (message)
- Receive (message)
Messages sent by a process can be either:
- Fixed Size
- Variable Size
If processes P and Q wish to communicate, they need to:
- Exchange messages via send/receive.
- Establish a communication link between them.
Logical Implementation of communication link:
- Direct or Indirect
- Synchronous or Asynchronous
- Automatic or Explicit Buffering
Each process that wants to communicate _____________ .
must explicitly name the recipient or sender of the communication
Send a message to process P.
Send (P, message)
Receive a message from process Q.
Receive (Q, message)
A ________ is established automatically between every pair of processes that want to communicate.
Link
The process needs to know only each other’s _________ to communicate.
Identity
A link associated with exactly _____________ .
Two Processes
Between each pair of processes, there exists ___________.
exactly one link
The messages are sent to and receive from mailboxes, or ports.
Indirect Communication
Each mailbox has a __________.
unique id
Processes can communicate only if _____________________.
they share a mailbox
The operating system then must provide a mechanism that allows a process to do the following:
- Create new mailbox
- Send and receive messages through the mailbox
- Delete mailbox
Message passing may be either ________________ - also known as ______________.
blocking or nonblocking, synchronous or asynchronous
The sending process is blocked until the message is received by receiving process or by the mailbox.
Blocking Send
The sending process sends the message and resumes operation.
Nonblocking Send
The receiver block until a message is available.
Blocking Receive
The receiver retrieves either a valid message or null.
Nonblocking Receive
Messages exchanged by communicating process resides in a temporary queue which can be implemented in 3 ways:
- Zero Capacity
- Bounded Capacity
- Unbounded Capacity
No messages are queued on a link.
Zero Capacity (No buffering System)
Finite length of n messages. Sender must wait if the link is full.
Bounded Capacity (Automatic Buffering)
Infinite length and sender never waits.
Unbounded Capacity (Automatic Buffering)
Is defined as an endpoint of communication.
Socket
A pair of processes communicating over a network employ ____________________.
a pair of sockets - one for each process
A socket is identified by an ____________________.
IP address concatenated with a port number.
The server waits for incoming client request by _____________.
Listening to a specified port
Examples of Server implementing specific services.
- telnet
- FTP
- HTTP
Servers implementing specific services listen to ____________.
well-known ports
___________________ are considered well known; we can use them to implement standard services.
All ports below 1024
If another process also on host X wished to establish another connection with the same Web server, it would be assigned a ______________________.
port number greater than 1024 and not equal to 1625
All connection should consist of a ______________.
Unique pair of sockets
Two (2) Types of Sockets
- Stream Sockets (TCP)
- Datagram Sockets (UDP)
These provide reliable, connection-oriented, and stream-oriented communication.
Stream Sockets (TCP)
These are connectionless and provide unreliable, message-oriented communication.
Datagram Sockets (UDP)
The IP address ______________ is a special IP address known as the loopback.
127.0.0.1