Changeset 4895 for branches/erijo-dev
- Timestamp:
- 04/23/07 04:27:09 (20 months ago)
- Files:
-
- 1 modified
-
branches/erijo-dev/licq/src/utils/thread.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/erijo-dev/licq/src/utils/thread.cpp
r4866 r4895 30 30 static void* threadStartRoutine(void* arg) 31 31 { 32 Licq::IThreadEntry* thread = reinterpret_cast<Licq::IThreadEntry*>(arg); 33 thread->run(); 32 try 33 { 34 Licq::IThreadEntry* thread = reinterpret_cast<Licq::IThreadEntry*>(arg); 35 thread->run(); 36 } 37 catch (...) 38 { 39 // TODO: Something... 40 } 34 41 return NULL; 35 42 }
