/* * Copyright (C) 2001-2004 Jakub Jermar * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - 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. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 #define AT_ONCE 3 #define PRODUCERS 50 #define CONSUMERS 50 static semaphore_t sem; static waitq_t can_start; static int items_produced; static int items_consumed; static void consumer(void *arg); static void producer(void *arg); static void failed(void); void producer(void *arg) { waitq_sleep(&can_start); semaphore_down(&sem); atomic_inc(&items_produced); thread_usleep(250); semaphore_up(&sem); } void consumer(void *arg) { waitq_sleep(&can_start); semaphore_down(&sem); atomic_inc(&items_consumed); thread_usleep(500); semaphore_up(&sem); } void failed(void) { printf("Test failed prematurely.\n"); thread_exit(); } void test(void) { int i, j, k; int consumers, producers; printf("Semaphore test #1\n"); waitq_initialize(&can_start); semaphore_initialize(&sem, AT_ONCE); for (i=1; i<=3; i++) { thread_t *thrd; items_produced = 0; items_consumed = 0; consumers = i * CONSUMERS; producers = (4-i) * PRODUCERS; printf("Creating %d consumers and %d producers...", consumers, producers); for (j=0; j<(CONSUMERS+PRODUCERS)/2; j++) { for (k=0; k