/* * Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 * The President and Fellows of Harvard College. * * 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. */ /* * More thread test code. */ #include #include #include #include #include #include #include "opt-synchprobs.h" /* dimension of matrices (cannot be too large or will overflow stack) */ #if OPT_SYNCHPROBS #define DIM 10 #else #define DIM 70 #endif /* number of iterations for sleepalot threads */ #define SLEEPALOT_PRINTS 20 /* number of printouts */ #define SLEEPALOT_ITERS 4 /* iterations per printout */ /* polling frequency of waker thread */ #define WAKER_WAKES 100 /* number of iterations per compute thread */ #define COMPUTE_ITERS 10 #define NWAITCHANS 12 static struct wchan *waitchans[NWAITCHANS]; /* N distinct wait channels */ static volatile int wakerdone; static struct semaphore *wakersem; static struct semaphore *donesem; static void setup(void) { char tmp[16]; int i; if (wakersem == NULL) { wakersem = sem_create("wakersem", 1); donesem = sem_create("donesem", 0); for (i=0; im[i][j] = rand >> 16; m2->m[i][j] = rand & 0xffff; } } for (i=0; im[i][k] * m2->m[k][j]; } m3->m[i][j] = tot; } } tot = 0; for (i=0; im[i][i]; } kprintf("{%lu: %u}", num, (unsigned) tot); thread_yield(); } kfree(m1); kfree(m2); kfree(m3); V(donesem); } static void make_computes(int howmany) { char name[16]; int i, result; for (i=0; i