Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:07

0001 //  (C) Copyright John Maddock 2001 - 2003. 
0002 //  (C) Copyright Jens Maurer 2003. 
0003 //  Use, modification and distribution are subject to the 
0004 //  Boost Software License, Version 1.0. (See accompanying file 
0005 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 
0008 //  See http://www.boost.org for most recent version.
0009 
0010 //  SGI Irix specific config options:
0011 
0012 #define BOOST_PLATFORM "SGI Irix"
0013 
0014 #define BOOST_NO_SWPRINTF 
0015 //
0016 // these are not auto detected by POSIX feature tests:
0017 //
0018 #define BOOST_HAS_GETTIMEOFDAY
0019 #define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
0020 
0021 #ifdef __GNUC__
0022    // GNU C on IRIX does not support threads (checked up to gcc 3.3)
0023 #  define BOOST_DISABLE_THREADS
0024 #endif
0025 
0026 // boilerplate code:
0027 #define BOOST_HAS_UNISTD_H
0028 #include <boost/config/detail/posix_features.hpp>
0029 
0030 
0031