Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
Niidae Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Inter-process communication
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Approaches == Different approaches to IPC have been tailored to different [[software requirements]], such as [[Algorithmic efficiency|performance]], [[Software design|modularity]], and system circumstances such as [[Bandwidth (computing)|network bandwidth]] and [[Latency (engineering)|latency]].<ref name="microsoft.com" /> {| class="wikitable" ! Method !! Short Description !! Provided by ([[operating system]]s or other environments) |- | [[computer file|File]] || A 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 file || A unique form of IPC in the late-1960s that most closely resembles [[Plan 9 from Bell Labs|Plan 9]]'s [[9P (protocol)|9P protocol]]||[[Dartmouth Time-Sharing System]] |- | [[signal (computing)|Signal]]; also [[Asynchronous System Trap]] || A 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 |- | [[network socket|Socket]] || Data sent over a network interface, either to a different process on the same computer or to another computer on the network. Stream-oriented ([[Transmission Control Protocol|TCP]]; data written through a socket requires formatting to preserve message boundaries) or more rarely message-oriented ([[User Datagram Protocol|UDP]], [[SCTP]]). || Most operating systems |- | [[Unix domain socket]] || Similar 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 an [[inode]], and multiple processes can communicate with one socket || All POSIX operating systems and Windows 10<ref>{{cite web|title=Windows/WSL Interop with AF_UNIX|date=7 February 2018 |url=https://blogs.msdn.microsoft.com/commandline/2018/02/07/windowswsl-interop-with-af_unix |publisher=Microsoft |access-date=25 May 2018}}</ref> |- | [[Message queue]] || A 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 the [[message queue]] without being directly connected to each other. || Most operating systems |- |[[Anonymous pipe]]|| A unidirectional data channel using [[Stdin|standard 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". || All [[POSIX]] systems, Windows |- | [[Named pipe]] || A 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 memory (interprocess communication)|Shared memory]] || Multiple processes are given access to the same block of [[Memory (computing)|memory]], which creates a shared buffer for the processes to communicate with each other. || All POSIX systems, Windows |- | [[Message passing]] || Allows multiple programs to communicate using message queues and/or non-OS managed channels. Commonly used in concurrency models. || Used in [[Local Inter-Process Communication|LPC]], [[Remote procedure call|RPC]], [[Remote method invocation|RMI]], and [[Message Passing Interface|MPI]] paradigms, [[Java RMI]], [[CORBA]], [[Component Object Model|COM]], [[Data Distribution Service|DDS]], [[Microsoft Message Queuing|MSMQ]], [[MailSlot]]s, [[QNX]], others |- | [[Memory-mapped file]] || A file mapped to [[RAM]] and can be modified by changing memory addresses directly instead of outputting to a stream. This shares the same benefits as a standard [[File (computing)|file]]. || All POSIX systems, Windows |- |}
Summary:
Please note that all contributions to Niidae Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Encyclopedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Inter-process communication
(section)
Add topic