summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/generic/timerlr-generic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/generic/timerlr-generic.cpp')
-rw-r--r--src/VBox/Runtime/generic/timerlr-generic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Runtime/generic/timerlr-generic.cpp b/src/VBox/Runtime/generic/timerlr-generic.cpp
index fa46ac78..9f320a88 100644
--- a/src/VBox/Runtime/generic/timerlr-generic.cpp
+++ b/src/VBox/Runtime/generic/timerlr-generic.cpp
@@ -122,7 +122,7 @@ RTDECL(int) RTTimerLRCreateEx(RTTIMERLR *phTimerLR, uint64_t u64NanoInterval, ui
int rc = RTSemEventCreate(&pThis->hEvent);
if (RT_SUCCESS(rc))
{
- rc = RTThreadCreate(&pThis->hThread, rtTimerLRThread, pThis, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "TIMER");
+ rc = RTThreadCreate(&pThis->hThread, rtTimerLRThread, pThis, 0, RTTHREADTYPE_TIMER, RTTHREADFLAGS_WAITABLE, "TimerLR");
if (RT_SUCCESS(rc))
{
*phTimerLR = pThis;