Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 361 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 361 Bytes

message_queue

An inter-thread message queue implementation based on circular buffer and eventfd.

Example code is based on libev. It creates 3 threads and illustrates how to send/receive messages using ev-loop.

Build

git clone https://github.com/sh4run/message_queue.git
cd message_queue
git submodule update --init
make
make example