https://github.com/kanerix/mutual-exclusion
Mutual exclusion in Golang
https://github.com/kanerix/mutual-exclusion
golang mutual-exclusion
Last synced: 3 months ago
JSON representation
Mutual exclusion in Golang
- Host: GitHub
- URL: https://github.com/kanerix/mutual-exclusion
- Owner: Kanerix
- License: mit
- Created: 2024-11-11T12:11:25.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-11-11T20:23:52.000Z (7 months ago)
- Last Synced: 2025-03-08T13:41:34.542Z (3 months ago)
- Topics: golang, mutual-exclusion
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mutual Exclusion
Welcome to the Muteal-Exclusion project. This is developed following the course **Distributed Systems** at ITU.
## Usage
This section will tell you how to start the server.
In this version all nodes are hardcoded (ports can not change).
You need to do is run all the nodes at the same time.
```bash
go run server/main.go 3001
go run server/main.go 3002
go run server/main.go 3003
```Then all nodes will start logging what they do and the processes are running.