https://github.com/mohido/multiproc_vaccination_programm
A simple terminal program for linux systems. It was made to implement the basics of multi-processes , files data manipulation with C.
https://github.com/mohido/multiproc_vaccination_programm
c linux multiprocessing operating-systems
Last synced: 4 months ago
JSON representation
A simple terminal program for linux systems. It was made to implement the basics of multi-processes , files data manipulation with C.
- Host: GitHub
- URL: https://github.com/mohido/multiproc_vaccination_programm
- Owner: Mohido
- License: mit
- Created: 2021-05-05T10:47:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-12T10:29:25.000Z (about 4 years ago)
- Last Synced: 2024-12-31T16:14:20.382Z (6 months ago)
- Topics: c, linux, multiprocessing, operating-systems
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multiproc_Vaccination_Programm
A simple collection of a linux-based terminal programs. It was made to implement the basics of multi-processes, files data manipulation (IPCs -Inner process communictations-) with C.# Notes:
1) These are a collection linux exclusive programs that runs on linux based systems. These programs only serve for IPC practicings and nothing more.
2) Main_Program: has a full interface that handles everything.
3) Practice_Program: is a simple program that has a specific task description to it. It serves for practicing more IPC rules.# How to use:
1) Make sure that you are on a linux based system.
2) Open a terminal and navigate to the program working directory.
3) write the following command:gcc -pthread main.c
4) the program will compile succesfully.
5) Run the program by typing:./a.out
or any specific name that you chose when compiling it.