UNIVERSITY OF WEST ATTICA
SCHOOL OF ENGINEERING
DEPARTMENT OF COMPUTER ENGINEERING AND INFORMATICS
University of West Attica · Department of Computer Engineering and Informatics
Operating Systems II
Vasileios Evangelos Athanasiou
Student ID: 19390005
Supervision
Supervisor: Vasileios Mamalis, Professor
Co-supervisor: Nikolaos Psarras, Applications Lecturer
Athens, June 2022
This guide explains how to set up, build, and run the project on your local machine.
- Operating System: Linux or Unix-like OS
- Compiler: GCC
- Libraries: POSIX Threads (
pthread)
git clone https://github.com/Operating-Systems-2-aka-Uniwa/Threads.git
cd ThreadsUse the -pthread flag to enable POSIX threads.
gcc -o pthread pthread.c -pthread./pthread
