/* * COPYRIGHT (c) 1989-2010. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #include #include "test_support.h" #include #include #include #include #include #define MAXIMUM 10 rtems_id Barriers[MAXIMUM]; int BarrierCount; rtems_id Semaphores[MAXIMUM]; int SemaphoreCount; void create_all_barriers(void) { rtems_status_code status; int i; BarrierCount = 0; memset( Barriers, 0, sizeof(Barriers) ); for ( i=0 ; i /* end of file */