mq_timedsend (3) Linux Manual Page
mq_send, mq_timedsend – send a message to a message queue Synopsis#include <mqueue.h> int mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned int msg_prio); #include <time.h> #include <mqueue.h> int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned int msg_prio, const struct timespec *abs_timeout);Link with -lrt. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): mq_timedsend(): _POSIX_C_SOURCE >= 200112LDescriptionmq_send() adds…
