Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Inter-process communication

From Wikipedia, the free encyclopedia
Sharing of data between running processes in a computer system
This article includes a list ofgeneral references, butit lacks sufficient correspondinginline citations. Please help toimprove this article byintroducing more precise citations.(August 2015) (Learn how and when to remove this message)
Agrid computing system that connects many personal computers over the Internet via inter-process network communication

Incomputer science,interprocess communication (IPC) is the sharing of data between runningprocesses in a computer system, or between multiple such systems. Mechanisms for IPC may be provided by anoperating system. Applications which use IPC are often categorized asclients and servers, where the client requests data and the server responds to client requests.[1] Many applications are both clients and servers, as commonly seen indistributed computing.

IPC is very important to the design process formicrokernels andnanokernels, which reduce the number of functionalities provided by the kernel. Those functionalities are then obtained by communicating with servers via IPC, leading to a large increase in communication when compared to a regular monolithic kernel. IPC interfaces generally encompass variable analytic framework structures. These processes ensure compatibility between the multi-vector protocols upon which IPC models rely.[2]

An IPC mechanism is eithersynchronous or asynchronous.Synchronization primitives may be used to have synchronous behavior with an asynchronous IPC mechanism.

Disadvantages

[edit]

Merging data from two processes can often incur significantly higher costs compared to processing the same data on a single thread, potentially by two or more orders of magnitude due to overheads such as inter-process communication and synchronization.[3][4][5]

Approaches

[edit]

Different approaches to IPC have been tailored to differentsoftware requirements, such asperformance,modularity, and system circumstances such asnetwork bandwidth andlatency.[1]

MethodShort DescriptionProvided by (operating systems or other environments)
FileA record stored on disk, or a record synthesized on demand by a file server, which can be accessed by multiple processes.Most operating systems
Communications fileA unique form of IPC in the late-1960s that most closely resemblesPlan 9's9P protocolDartmouth Time-Sharing System
Signal; alsoAsynchronous System TrapA system message sent from one process to another, not usually used to transfer data but instead used to remotely command the partnered process.Most operating systems
SocketData sent over a network interface, either to a different process on the same computer or to another computer on the network. Stream-oriented (TCP; data written through a socket requires formatting to preserve message boundaries) or more rarely message-oriented (UDP,SCTP).Most operating systems
Unix domain socketSimilar to an internet socket, but all communication occurs within the kernel. Domain sockets use the file system as their address space. Processes reference a domain socket as aninode, and multiple processes can communicate with one socketAll POSIX operating systems and Windows 10[6]
Message queueA data stream similar to a socket, but which usually preserves message boundaries. Typically implemented by the operating system, they allow multiple processes to read and write to themessage queue without being directly connected to each other.Most operating systems
Anonymous pipeA unidirectional data channel usingstandard input and output. Data written to the write-end of the pipe is buffered by the operating system until it is read from the read-end of the pipe. Two-way communication between processes can be achieved by using two pipes in opposite "directions".AllPOSIX systems, Windows
Named pipeA pipe that is treated like a file. Instead of using standard input and output as with an anonymous pipe, processes write to and read from a named pipe, as if it were a regular file.All POSIX systems, Windows, AmigaOS 2.0+
Shared memoryMultiple processes are given access to the same block ofmemory, which creates a shared buffer for the processes to communicate with each other.All POSIX systems, Windows
Message passingAllows multiple programs to communicate using message queues and/or non-OS managed channels. Commonly used in concurrency models.Used inLPC,RPC,RMI, andMPI paradigms,Java RMI,CORBA,COM,DDS,MSMQ,MailSlots,QNX, others
Memory-mapped fileA file mapped toRAM and can be modified by changing memory addresses directly instead of outputting to a stream. This shares the same benefits as a standardfile.All POSIX systems, Windows

Applications

[edit]
This articleis inlist format but may read better asprose. You can help byconverting this article, if appropriate.Editing help is available.(November 2016)

Remote procedure call interfaces

[edit]
Main article:remote procedure call

Platform communication stack

[edit]

The following are messaging, and information systems that utilize IPC mechanisms but don't implement IPC themselves:

Operating system communication stack

[edit]

The following are platform or programming language-specific APIs:

Distributed object models

[edit]

The following are platform or programming language specific-APIs that use IPC, but do not themselves implement it:

See also

[edit]

References

[edit]
  1. ^ab"Interprocess Communications". Microsoft.
  2. ^Camurati, P (1993). "Inter-process communications for system-level design".International Workshop on Hardware/Software Codesign.
  3. ^Operating System Concepts.ISBN 978-0470128725.
  4. ^Computer Organization and Design MIPS Edition: The Hardware/Software Interface (The Morgan Kaufmann Series in Computer Architecture and Design). Morgan Kaufmann.ISBN 978-0124077263.
  5. ^Parallel Programming: Techniques and Applications Using Networked Workstations and Parallel Computers. Pearson.ISBN 978-0131405639.
  6. ^"Windows/WSL Interop with AF_UNIX". Microsoft. 7 February 2018. Retrieved25 May 2018.
  7. ^"Concurrent programming - communication between processes"
  8. ^"IpcMain | Electron".

External links

[edit]
Methods
Protocols
andstandards
Software libraries
andframeworks
Types
Technology
General
Features
Mechanism
Memetics
RSS
Social
Standard
Form
Media
Alternative media
Micromedia
Related
Retrieved from "https://en.wikipedia.org/w/index.php?title=Inter-process_communication&oldid=1315742720"
Category:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp