https://github.com/vic-lsh/os-page-replacement-algo
Operating Systems Lab: Page Replacement Algorithm
https://github.com/vic-lsh/os-page-replacement-algo
Last synced: 2 months ago
JSON representation
Operating Systems Lab: Page Replacement Algorithm
- Host: GitHub
- URL: https://github.com/vic-lsh/os-page-replacement-algo
- Owner: vic-lsh
- Created: 2019-04-20T02:16:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T22:35:26.000Z (about 6 years ago)
- Last Synced: 2025-01-25T13:07:35.242Z (4 months ago)
- Language: C++
- Homepage:
- Size: 1.53 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OS Lab 4: Page Replacement Algorithms
## Getting started
Run the following commands in the root directory:
```
make // compile// enter `1` to enable optional debug and show-random modes; they're off by default
./exec [M] [P] [S] [J] [N] [R] [optional debug flag] [optional show random flag]./exec [input-number] // custom way to test the sample input (1-16) provided, e.g. ./exec 12
./exec --debug --show-random [input-number] // enable debug and show-random mode
./exec -d -b [input-number] // short-hand syntaxmake clean // remove binary files
```