Ticket #3762: boost_thread_pthread.2.diff

File boost_thread_pthread.2.diff, 2.4 KB (added by Yuriy A. Krasnoschek <aka.rider@…>, 13 years ago)
  • recursive_mutex.hpp

     
    1717#endif
    1818#include <boost/date_time/posix_time/conversion.hpp>
    1919#include <errno.h>
    20 #include "timespec.hpp"
    21 #include "pthread_mutex_scoped_lock.hpp"
     20#include <boost/thread/pthread/timespec.hpp>
     21#include <<boost/thread/pthread/pthread_mutex_scoped_lock.hpp>
    2222
    2323#ifdef _POSIX_TIMEOUTS
    2424#if _POSIX_TIMEOUTS >= 0
  • condition_variable.hpp

     
    55// http://www.boost.org/LICENSE_1_0.txt)
    66// (C) Copyright 2007-8 Anthony Williams
    77
    8 #include "timespec.hpp"
    9 #include "pthread_mutex_scoped_lock.hpp"
    10 #include "thread_data.hpp"
    11 #include "condition_variable_fwd.hpp"
     8#include <boost/thread/pthread/timespec.hpp>
     9#include <boost/thread/pthread/pthread_mutex_scoped_lock.hpp>
     10#include <boost/thread/pthread/thread_data.hpp>
     11#include <boost/thread/pthread/condition_variable_fwd.hpp>
    1212
    1313#include <boost/config/abi_prefix.hpp>
    1414
  • thread_data.hpp

     
    1212#include <boost/thread/mutex.hpp>
    1313#include <boost/optional.hpp>
    1414#include <pthread.h>
    15 #include "condition_variable_fwd.hpp"
     15#include <boost/thread/pthread/condition_variable_fwd.hpp>
    1616#include <map>
    1717
    1818#include <boost/config/abi_prefix.hpp>
  • mutex.hpp

     
    1414#include <boost/thread/xtime.hpp>
    1515#include <boost/assert.hpp>
    1616#include <errno.h>
    17 #include "timespec.hpp"
    18 #include "pthread_mutex_scoped_lock.hpp"
     17#include <boost/thread/pthread/timespec.hpp>
     18#include <boost/thread/pthread/pthread_mutex_scoped_lock.hpp>
    1919
    2020#ifdef _POSIX_TIMEOUTS
    2121#if _POSIX_TIMEOUTS >= 0
  • once.hpp

     
    1414
    1515#include <pthread.h>
    1616#include <boost/assert.hpp>
    17 #include "pthread_mutex_scoped_lock.hpp"
    1817#include <boost/thread/pthread/pthread_mutex_scoped_lock.hpp>
    1918#include <boost/cstdint.hpp>
    2019