https://github.com/bebalix/minitalk
This project make communicate two separate processes using unix signals.
https://github.com/bebalix/minitalk
42projects language-c server-client unix-signals
Last synced: 8 days ago
JSON representation
This project make communicate two separate processes using unix signals.
- Host: GitHub
- URL: https://github.com/bebalix/minitalk
- Owner: BebAlix
- Created: 2022-08-11T22:43:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-10T11:03:49.000Z (about 3 years ago)
- Last Synced: 2025-11-10T14:35:53.633Z (8 months ago)
- Topics: 42projects, language-c, server-client, unix-signals
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minitalk
This project make communicate two separate processes using unix signals.
## How to launch the game
1. To compile the program :
```sh
$ make
```
With bonus :
```sh
$ make bonus
```
2. To start the program :
In a terminal :
```sh
$ ./server
```
Copy the ID of the process.
In a second terminal :
```sh
$ ./client [ID_server_process] [character string of your choice]
```
3. Remove all :
```sh
$ make fclean
```