https://github.com/shivansh/dsm
Distributed shared memory. Course project for Distributed Systems (CS632).
https://github.com/shivansh/dsm
Last synced: 2 months ago
JSON representation
Distributed shared memory. Course project for Distributed Systems (CS632).
- Host: GitHub
- URL: https://github.com/shivansh/dsm
- Owner: shivansh
- Created: 2018-09-30T11:52:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T03:52:37.000Z (over 4 years ago)
- Last Synced: 2025-03-28T01:48:15.578Z (3 months ago)
- Language: C
- Homepage:
- Size: 197 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Distributed Shared Memory
This implementation models a two process distributed shared memory system as a
proof of concept for a n-process system. Made as a part of the course Distributed
Systems (CS632).## Build
For building, execute -
```
make
```## Testing
For running the tests available in `test.c`, follow the instructions below.On master machine, execute -
```
./dsm master
```On slave machine, execute -
```
./dsm master
```