00001 /****************** <VPR heading BEGIN do not edit this line> ***************** 00002 * 00003 * VR Juggler Portable Runtime 00004 * 00005 * Original Authors: 00006 * Allen Bierbaum, Patrick Hartling, Kevin Meinert, Carolina Cruz-Neira 00007 * 00008 * ----------------------------------------------------------------- 00009 * File: $RCSfile: CondVar.h,v $ 00010 * Date modified: $Date: 2003/02/21 22:59:27 $ 00011 * Version: $Revision: 1.10 $ 00012 * ----------------------------------------------------------------- 00013 * 00014 ****************** <VPR heading END do not edit this line> ******************/ 00015 00016 /*************** <auto-copyright.pl BEGIN do not edit this line> ************** 00017 * 00018 * VR Juggler is (C) Copyright 1998-2003 by Iowa State University 00019 * 00020 * Original Authors: 00021 * Allen Bierbaum, Christopher Just, 00022 * Patrick Hartling, Kevin Meinert, 00023 * Carolina Cruz-Neira, Albert Baker 00024 * 00025 * This library is free software; you can redistribute it and/or 00026 * modify it under the terms of the GNU Library General Public 00027 * License as published by the Free Software Foundation; either 00028 * version 2 of the License, or (at your option) any later version. 00029 * 00030 * This library is distributed in the hope that it will be useful, 00031 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00032 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00033 * Library General Public License for more details. 00034 * 00035 * You should have received a copy of the GNU Library General Public 00036 * License along with this library; if not, write to the 00037 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00038 * Boston, MA 02111-1307, USA. 00039 * 00040 *************** <auto-copyright.pl END do not edit this line> ***************/ 00041 00042 #ifndef _VPR_CondVar_h_ 00043 #define _VPR_CondVar_h_ 00044 00045 #include <vpr/vprConfig.h> 00046 00047 #if VPR_THREAD_DOMAIN_INCLUDE == VPR_DOMAIN_IRIX_SPROC 00048 # include <ulocks.h> 00049 # include <vpr/Sync/CondVarGeneric.h> 00050 #elif VPR_THREAD_DOMAIN_INCLUDE == VPR_DOMAIN_POSIX 00051 #ifndef _POSIX_C_SOURCE 00052 # define _POSIX_C_SOURCE VPR_POSIX_C_SOURCE 00053 #endif 00054 00055 # include <vpr/md/POSIX/Sync/CondVarPosix.h> 00056 #elif VPR_THREAD_DOMAIN_INCLUDE == VPR_DOMAIN_NSPR 00057 # include <vpr/md/NSPR/Sync/CondVarNSPR.h> 00058 #endif /* VPR_IRIX_SPROC */ 00059 00060 00086 #endif
1.2.14 written by Dimitri van Heesch,
© 1997-2002