반응형


출처 : http://en.wikipedia.org/wiki/Inter-process_communication


From Wikipedia, the free encyclopedia

In computinginter-process communication (IPC) is a set of methods for the exchange of data among multiple threads in one or more processes. Processes may be running on one or more computers connected by a network. IPC methods are divided into methods for message passingsynchronizationshared memory, and remote procedure calls (RPC). The method of IPC used may vary based on the bandwidth and latency of communication between the threads, and the type of data being communicated.

There are several reasons for providing an environment that allows process cooperation:

IPC may also be referred to as inter-thread communication and inter-application communication.

The combination of IPC with the address space concept is the foundation for address space independence/isolation.[1]

Main IPC methods[edit]

MethodShort DescriptionProvided by (operating systems or other environments)
FileA record stored on disk that can be accessed by name by any processMost operating systems
SignalA system message sent from one process to another, not usually used to store information but instead give commands.Most operating systems; some systems, such as Win NT subsystem, implement signals in only the C run-time library and provide no support for their use as an IPC method[citation needed]. But other subsystems like the POSIX subsystem provided by default until windows 2000. Then available with interix in XP/2003 then with « windows services for UNIX » (SFU).
SocketA data stream sent over a network interface, either to a different process on the same computer or to another computerMost operating systems
Message queueAn anonymous data stream similar to the pipe, but stores and retrieves information in packets.Most operating systems
PipeA two-way data stream interfaced through standard input and output and is read character by character.All POSIX systems, Windows
Named pipeA pipe implemented through a file on the file system instead of standard input and output.All POSIX systems, Windows
SemaphoreA simple structure that synchronizes threads or processes acting on shared resources.All POSIX systems, Windows
Shared memoryMultiple processes given access to the same memory, allowing all to change it and read changes made by other processes.All POSIX systems, Windows
Message passing(shared nothing)Similar to the message queue.Used in MPI paradigm, Java RMICORBADDSMSMQMailSlotsQNX, others
Memory-mapped fileA file mapped to RAM and can be modified by changing memory addresses directly instead of outputting to a stream, shares same benefits as a standard file.All POSIX systems, Windows

Implementations[edit]

There are several APIs which may be used for IPC. A number of platform independent APIs include the following:

The following are platform or programming language specific APIs:

See also[edit]

References[edit]

  1. Jump up^ Jochen LiedtkeOn µ-Kernel ConstructionProc. 15th ACM Symposium on Operating System Principles (SOSP), December 1995

External links[edit]


반응형

'Language' 카테고리의 다른 글

npm node module 공통 관리하기  (0) 2020.10.28
특정 문자열 분석 쉘  (0) 2012.02.21
우리은행 웹 접근성 가이드 주소  (0) 2011.08.09
빠른 수식 계산법  (0) 2010.03.01

+ Recent posts