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.