pmsg/mq_notify_siginfo.cThis is pmsg/mq_notify_siginfo.c, an example to accompany the book, The Linux Programming Interface. This file is not printed in the book; it is a supplementary file for Chapter 53. The source code file is copyright 2024, Michael Kerrisk, and is licensed under the GNU General Public License, version 3. In the listing below, the names of Linux system calls and C library functions are hyperlinked to manual pages from the Linux man-pages project, and the names of functions implemented in the book are hyperlinked to the implementations of those functions.
|
/* mq_notify_siginfo.c Usage: mq_notify_siginfo /mq-name Demonstrate message notification via signals (catching the signals with a signal handler) on a POSIX message queue. See also mq_notify_sigwaitinfo.c. */ #include <signal.h> #include <mqueue.h> #include <fcntl.h> /* For definition of O_NONBLOCK */ #include "tlpi_hdr.h" #define NOTIFY_SIG SIGUSR1 static volatile sig_atomic_t gotSig = 1; /* See comment in main() */
/* Handler for message notification signal */ static void handler(int sig, siginfo_t *si, void *ucontext) { gotSig = 1; printf("Signaled: si_pid = %ld\n", (long) si->si_pid); /* UNSAFE (see Section 21.1.2) */ }
int main(int argc, char *argv[]) { if (argc != 2 || strcmp(argv[1], "--help") == 0) usageErr("%s /mq-name\n", argv[0]); /* Open the (existing) queue in nonblocking mode so that we can drain messages from it without blocking once the queue has been emptied */ mqd_t mqd = mq_open(argv[1], O_RDONLY | O_NONBLOCK); if (mqd == (mqd_t) -1) errExit("mq_open"); /* Establish handler for notification signal */ struct sigaction sa; sigemptyset(&sa.sa_mask); sa.sa_flags = SA_SIGINFO; sa.sa_sigaction = handler; if (sigaction(NOTIFY_SIG, &sa, NULL) == -1) errExit("sigaction"); /* Possibly, a message had already been queued by the time we enter the loop below. By initializing 'gotSig' to 1 above, we trigger the program to make the initial registration for notification and force the queue to be drained of any messages on the first loop iteration. */ for (int j = 0; ; j++) { if (gotSig) { gotSig = 0; /* Register for message notification */ struct sigevent sev; sev.sigev_notify = SIGEV_SIGNAL; sev.sigev_signo = NOTIFY_SIG; if (mq_notify(mqd, &sev) == -1) errExit("mq_notify"); /* Drain all messages from the queue */ const int MAX_MSG_SIZE = 8192; char msg[MAX_MSG_SIZE]; ssize_t numRead; while ((numRead = mq_receive(mqd, msg, MAX_MSG_SIZE, NULL)) >= 0) { /* Do whatever processing is required for each message */ printf("Read %zd bytes\n", numRead); } if (errno != EAGAIN) /* Unexpected error */ errExit("mq_receive"); } printf("j = %d\n", j); sleep(5); /* Do some "work" */ } }
Note that, in most cases, the programs rendered in these web pages are not free standing: you'll typically also need a few other source files (mostly in the lib/ subdirectory) as well. Generally, it's easier to just download the entire source tarball and build the programs with make(1). By hovering your mouse over the various hyperlinked include files and function calls above, you can see which other source files this file depends on.