- Timestamp:
- 02/06/10 11:50:48 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Core/branches/0075_TR_SCRIPTING/Threading/src/Thread_posix.cpp
r3327 r3370 38 38 #include <unistd.h> 39 39 #include <sys/errno.h> 40 #include <assert.h> 40 41 41 42 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ … … 166 167 167 168 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 169 bool 170 Thread_posix::NativeThreadId_posix::operator<(const I_Thread::ThreadId::I_NativeThreadId& _id) const 171 { 172 const NativeThreadId_posix* const pNativeThreadId_posix = dynamic_cast<const NativeThreadId_posix*>(&_id); 173 assert(pNativeThreadId_posix != NULL); 174 return (m_nativeThreadId < pNativeThreadId_posix->m_nativeThreadId); 175 } 176 177 //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ 168 178 I_Thread::ThreadId::I_NativeThreadId* 169 179 Thread_posix::NativeThreadId_posix::clone() const
