minitalk
minitalk copied to clipboard
42cursus' minitalk project. Begin date 10/mar/2022. Finish date 12/mar/2021. About 21h of total work.
๐ฌ minitalk
The virtual machine
About ยท Usage ยท Testing
๐ก About the project
The purpose of this project is to code a small data exchange program using UNIX signals.
For more detailed information, look at the subject of this project.
๐ ๏ธ Usage
Requirements
The function is written in C language and thus needs the gcc
compiler and some standard C libraries to run.
Instructions
1. Compiling
To compile, go to the project path and run:
$ make
๐ Testing
To test the program you just need to launch the "server" and the "client" in different shell tabs with the following:
$ ./server
This will show your PID to make the client work and will stay waiting to receive a message from the "client"
$ ./client "PID" "Your message string"
By launching it, this will show "Your message string" on the server window.