vault backup: 2025-03-03 08:52:47

This commit is contained in:
Marco Realacci 2025-03-03 08:52:47 +01:00
parent 7fc8767934
commit 6195c53d92

View file

@ -18,4 +18,12 @@ We can assume many features:
- Shared memory vs Channel-based communication - Shared memory vs Channel-based communication
**Reliable** system: every process correctly executes its program **Reliable** system: every process correctly executes its program
**Async**
**Asynchronous:** no timing assumption (every process has its own clock, which are independent one from the other)
**Shared medium:** A way is through a shared memory area, another way is through message passing.
For this part of the course we assume that every process has a local memory but can access a shared part of the memory. We will assume that memory is split into registers (will see later).
For now, we will assume that processes won't fail.
We also assume that we have one processor per process. But actually the processor can be a shared resource (more processes than processors).