- shm (shm condition variables)
- pipe
- fifo
- mmap
- semaphore (shm with semaphore)
- mq
- socket local
- socket
- eventfd
cmake -B build
cmake --build build
You can run the executable programs which are at build/src/xxx
directories.
- shm_chat: is a local multi-user chatroom based on shm and mmap.
# server compiled and run in the build directory.
./server
# client compiled and run in the build directory.
./client [client_id](1-100) [user_name]
Features:
- Mapped share memory
- Ring buffer messages
- Non-canonical input mode. Peer`s inputs will never interrupt current user typed input
- Whisper supported
- Active user inquiry supported
- Graceful quit
client 1
client 2
client 3
server