14 Dec 2019

  • December 14, 2019
  • Amitraj
Interprocess Communication

• Like UNIX, Linux informs processes that an event has occurred
via signals.

• There is a limited number of signals, and they cannot carry
information: Only the fact that a signal occurred is available to
a process.

• The Linux kernel does not use signals to communicate with
processes with are running in kernel mode, rather,
communication within the kernel is accomplished via
scheduling states and wait queue structures.



Passing Data between Processes

• The pipe mechanism allows a child process to inherit a
communication channel to its parent; data written to one end of
the pipe can be read at the other.

• Shared memory offers an extremely fast way of
communicating; any data written by one process to a shared
memory region can be read immediately by any other process
that has mapped that region into its address space.

• To obtain synchronization, however, shared memory must be
used in conjunction with another interprocess-communication
mechanism.



Shared Memory Object

• The shared-memory object acts as a backing store for
shared-memory regions in the same way as a file can act as
backing store for a memory-mapped memory region.

• Shared-memory mappings direct page faults to map in pages
from a persistent shared-memory object.

• Shared-memory objects remember their contents even if no
processes are currently mapping them into virtual memory.

Related Posts:

  • Deadlock in Operating System Introduction of Deadlock in Operating System -> A process in operating systems uses different resources and uses resources in following way. 1) Requests a resource 2) Use the resource 2) Releases the resource -> D… Read More
  • Process Synchronization: Critical Section Problem Process Synchronization A co-operative process is the one which can affect the execution of other process or can be affected by the execution of other process. Such processes need to be synchronized so that their order of e… Read More
  • Classical Problems of Synchronization in OS Classical Problems of Synchronization In this tutorial we will discuss about various classic problem of synchronization. Semaphore can be used in other synchronization problems besides Mutual Exclusion. Below are some of … Read More
  • Methods for Handling Deadlock Methods for Handling Deadlock 1. Deadlock prevention Deadlock happens only when Mutual Exclusion, hold and wait, No preemption and circular wait holds simultaneously. If it is possible to violate one of the four conditions … Read More
  • Semaphores in Process Synchronization Introduction to Semaphores ->In 1965, Dijkstra proposed a new and very significant technique for managing concurrent processes by using the value of a simple integer variable to synchronize the progress of interacting pr… Read More

Translate

Popular Posts