/* * Copyright (c) 2003, Intel Corporation. All rights reserved. * Created by: julie.n.fleischer REMOVE-THIS AT intel DOT com * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. */ /* * Test that if the message queue is full and O_NONBLOCK is not set, * mq_timedsend() will block until abs_timeout is reached. * * Test by sending messages in a child process until the message queue is full. * At this point, the child should be blocking on sending. Then, have the * parent wait for the timeout and return pass when the next message is sent * to the message queue. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "posixtest.h" #define NAMESIZE 50 #define MSGSTR "0123456789" #define BUFFER 40 #define MAXMSG 5 #define TIMEOUT 7 #define CHILDPASS 1 #define CHILDFAIL 0 char gqname[NAMESIZE]; mqd_t gqueue; /* * This handler is just used to catch the signal and stop sleep (so the * parent knows the child is still busy sending signals). */ void stopsleep_handler(int signo) { return; } int main() { int pid; struct mq_attr attr; const char *msgptr = MSGSTR; sprintf(gqname, "/mq_timedsend_5-3_%d", getpid()); attr.mq_maxmsg = MAXMSG; attr.mq_msgsize = BUFFER; gqueue = mq_open(gqname, O_CREAT |O_RDWR, S_IRUSR | S_IWUSR, &attr); if (gqueue == (mqd_t)-1) { perror("mq_open() did not return success"); return PTS_UNRESOLVED; } if ((pid = fork()) == 0) { /* child here */ int i, sig; struct timespec ts; sigset_t mask; /* wait for parent to set up handler */ sigemptyset(&mask); sigaddset(&mask, SIGUSR1); sigprocmask(SIG_BLOCK,&mask,NULL); sigwait(&mask, &sig); /* child should block in < TIMEOUT seconds */ ts.tv_sec=time(NULL)+TIMEOUT; ts.tv_nsec=0; for (i=0; i