/* * Copyright (c) 2015 * The President and Fellows of Harvard College. * Written by David A. Holland. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include "usem.h" #include "tasks.h" #include "results.h" #define STARTSEM "sem:start" struct usem startsem; /* * Task hook function that does nothing. */ static void nop(unsigned groupid, unsigned count) { (void)groupid; (void)count; } /* * Wrapper for wait. */ static unsigned dowait(pid_t pid) { int r; int status; r = waitpid(pid, &status, 0); if (r < 0) { err(1, "waitpid"); } if (WIFSIGNALED(status)) { warnx("pid %d signal %d", pid, WTERMSIG(status)); return 1; } if (WIFEXITED(status) && WEXITSTATUS(status) != 0) { warnx("pid %d exit %d", pid, WEXITSTATUS(status)); return 1; } return 0; } /* * Do a task group: fork the processes, then wait for them. */ static void runtaskgroup(unsigned count, void (*prep)(unsigned, unsigned), void (*task)(unsigned, unsigned), void (*cleanup)(unsigned, unsigned), unsigned groupid) { pid_t mypids[count]; unsigned i; unsigned failures = 0; time_t secs; unsigned long nsecs; prep(groupid, count); for (i=0; i 0) { calcresult(0, startsecs, startnsecs, buf, sizeof(buf)); printf("Thinkers: %s\n", buf); } if (numgrinders > 0) { calcresult(1, startsecs, startnsecs, buf, sizeof(buf)); printf("Grinders: %s\n", buf); } for (i=0; i