Merge branch 'aix_fix' of https://github.com/ibmsoe/smart_ptr into develop

This commit is contained in:
Peter Dimov
2014-07-30 17:51:32 +03:00

View File

@@ -98,7 +98,13 @@ inline void yield( unsigned k )
#elif defined( BOOST_HAS_PTHREADS )
#ifndef _AIX
#include <sched.h>
#else
// AIX's sched.h defines ::var which sometimes conflicts with Lambda's var
extern "C" int sched_yield(void);
#endif
#include <time.h>
namespace boost