Changeset 28903 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Apr 29, 2010 2:58:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r28800 r28903 49 49 #include "internal/sched.h" 50 50 #include "internal/process.h" 51 #ifdef RT_WITH_ICONV_CACHE 52 # include "internal/string.h" 53 #endif 51 54 52 55 … … 354 357 #ifdef IN_RING3 355 358 rtLockValidatorInitPerThread(&pThread->LockValidator); 359 #endif 360 #ifdef RT_WITH_ICONV_CACHE 361 rtStrIconvCacheInit(pThread); 356 362 #endif 357 363 int rc = RTSemEventMultiCreate(&pThread->EventUser); … … 575 581 576 582 rtLockValidatorDeletePerThread(&pThread->LockValidator); 583 #endif 584 #ifdef RT_WITH_ICONV_CACHE 585 rtStrIconvCacheDestroy(pThread); 577 586 #endif 578 587 ASMAtomicXchgU32(&pThread->u32Magic, RTTHREADINT_MAGIC_DEAD);
Note:
See TracChangeset
for help on using the changeset viewer.