Changeset 23
- Timestamp:
- Jan 19, 2010, 7:08:51 PM (15 years ago)
- Location:
- boost/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified boost/trunk/boost/config/platform/os2.hpp ¶
r15 r23 60 60 #define EAI_NODATA EAI_NONAME 61 61 62 #ifndef NI_MAXHOST 63 #define NI_MAXHOST 1025 64 #endif 65 66 #ifndef NI_MAXSERV 67 #define NI_MAXSERV 32 68 #endif 62 69 63 70 // boilerplate code: -
TabularUnified boost/trunk/boost/thread/pthread/condition_variable.hpp ¶
r5 r23 24 24 { 25 25 detail::interruption_checker check_for_interruption(&cond); 26 #ifdef __OS2__ 27 struct timespec timeout=detail::get_timespec(wait_until); 28 #else 26 29 struct timespec const timeout=detail::get_timespec(wait_until); 30 #endif 27 31 int const cond_res=pthread_cond_timedwait(&cond,m.mutex()->native_handle(),&timeout); 28 32 if(cond_res==ETIMEDOUT) -
TabularUnified boost/trunk/boost/thread/pthread/mutex.hpp ¶
r5 r23 182 182 bool timed_lock(system_time const & abs_time) 183 183 { 184 #ifdef __OS2__ 185 struct timespec timeout=detail::get_timespec(abs_time); 186 #else 184 187 struct timespec const timeout=detail::get_timespec(abs_time); 188 #endif 185 189 boost::pthread::pthread_mutex_scoped_lock const local_lock(&m); 186 190 while(is_locked) -
TabularUnified boost/trunk/libs/filesystem/src/portability.cpp ¶
r5 r23 49 49 // name_check functions ----------------------------------------------// 50 50 51 # ifdef BOOST_WINDOWS51 #if defined(BOOST_WINDOWS) || defined(__OS2__) 52 52 BOOST_FILESYSTEM_DECL bool native( const std::string & name ) 53 53 { -
TabularUnified boost/trunk/tools/jam/src/command.c ¶
r13 r23 42 42 cmd->shell = shell; 43 43 cmd->next = 0; 44 #ifdef OS_OS245 no_limit = 1;46 #endif47 44 lol_init( &cmd->args ); 48 45 lol_add( &cmd->args, targets );
Note:
See TracChangeset
for help on using the changeset viewer.