Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 358 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 358 Bytes

rpa_queue

Simple Blocking Queues in C

Features:

  • just one header and one C file
  • only depends on pthreads
  • support timeouts on push/pop operations
  • proven implementation (Apache apr_queue)

This is Apache apr_queue with the following modifications:

  • apr dependencies stripped off (using malloc instead of apr_pool, etc.)
  • add timeout versions