2024-1 Operating Systems (ITP30002) - HW #3
A homework assignment to implement word search program using multi-threading and synchronization.
Hyunseo Lee (22100600) hslee@handong.ac.kr
This program is written in C language on Ubuntu 22.04.1 LTS. To build this program, you need to use Ubuntu 22.04.1 LTS with GCC and Make installed.
After unarchiving the folder, you should see the following files:
$ ls
Makefile README.md mtws.cTo build the program, run the following command in the terminal:
$ makeTo build the program with debug mode, run the following command in the terminal:
$ make debugTo cleanup the build files and test files, run the following command in the terminal:
$ make cleanYou can also generate the test files by running the following command in the terminal:
$ make testenvTo run the program, run the following command in the terminal:
$ ./mtws -b <bounded buffer size> -t <number of threads> -d <search directory> -w <search word>