Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 681 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 681 Bytes

Inter-Process Communication

This part will explain how to allow two processes to safely communicate with each other, providing two example implementations.

Below the list of chapters:

  • Overview A brief introduction to what is the Inter-Process communication, and what are the types that will be covered in this part.
  • Shared_Memory is the easiest way for two processes to communicate each other, by mapping the same memory into both addresses spaces. This chapter will look at an example implementation.
  • Message Passing will cover message passing, which moves packets of information between two processes.