https://github.com/eesuhn/42-minitalk
Signals with Unix
https://github.com/eesuhn/42-minitalk
42 c signals unix
Last synced: 11 months ago
JSON representation
Signals with Unix
- Host: GitHub
- URL: https://github.com/eesuhn/42-minitalk
- Owner: eesuhn
- Created: 2024-12-06T07:40:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-27T16:03:13.000Z (over 1 year ago)
- Last Synced: 2025-02-21T22:33:13.181Z (over 1 year ago)
- Topics: 42, c, signals, unix
- Language: C
- Homepage:
- Size: 1.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## minitalk
[
](https://42kl.edu.my/)
[Click here for subject file](./docs/en.subject.pdf)
Handling signals between two processes using UNIX signals.

#### Setting up
1. Run `make` to compile the server and client executables.
2. Run `./server` to start the server.
3. Run `./client [server-pid] [message]`, replacing `[server-pid]` with the server's PID to send a message to the server.
#### Some takeaways
1. In UNIX, bit manipulation is essential for handling signals.
2. Welp, this project is relatively simple.