Changeset 43533 in vbox
- Timestamp:
- Oct 4, 2012 9:45:31 AM (12 years ago)
- Location:
- trunk/src/VBox/Runtime/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/timer-generic.cpp
r42235 r43533 117 117 if (RT_SUCCESS(rc)) 118 118 { 119 rc = RTThreadCreate(&pTimer->Thread, rtTimerThread, pTimer, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "T IMER");119 rc = RTThreadCreate(&pTimer->Thread, rtTimerThread, pTimer, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "Timer"); 120 120 if (RT_SUCCESS(rc)) 121 121 { -
trunk/src/VBox/Runtime/generic/timerlr-generic.cpp
r42235 r43533 123 123 if (RT_SUCCESS(rc)) 124 124 { 125 rc = RTThreadCreate(&pThis->hThread, rtTimerLRThread, pThis, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "T IMER");125 rc = RTThreadCreate(&pThis->hThread, rtTimerLRThread, pThis, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "TimerLR"); 126 126 if (RT_SUCCESS(rc)) 127 127 {
Note:
See TracChangeset
for help on using the changeset viewer.