about summary refs log tree commit diff
path: root/src/mq
Commit message (Expand)AuthorAgeFilesLines
* mq_notify: block all (application) signals in the worker threadRich Felker2023-02-121-0/+5
* mq_notify: join worker thread before returning in error pathRich Felker2023-02-121-2/+5
* mq_notify: rework to fix use-after-close/double-close bugsRich Felker2023-02-121-8/+15
* mq_notify: use semaphore instead of barrier to sync args consumptionRich Felker2023-02-111-5/+9
* mq_timedsend, mq_timedreceive: add time64, decouple 32-bit time_tRich Felker2019-07-282-0/+34
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-062-2/+2
* fix longstanding missing static in mq_notify (namespace pollution)Rich Felker2012-04-291-1/+1
* const correctness in mq_notifyRich Felker2011-06-251-1/+1
* mq names without leading / have impl-def behavior; allowing them is easierRich Felker2011-06-072-9/+2
* mq send/recv functions are cancellation pointsRich Felker2011-06-072-2/+2
* implement mq_notifyRich Felker2011-06-071-2/+65
* add support for POSIX message queues, except mq_notifyRich Felker2011-06-0710-0/+99