summaryrefslogtreecommitdiff
path: root/libpthread/sysdeps/viengoos/pt-thread-halt.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/sysdeps/viengoos/pt-thread-halt.c')
-rw-r--r--libpthread/sysdeps/viengoos/pt-thread-halt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/sysdeps/viengoos/pt-thread-halt.c b/libpthread/sysdeps/viengoos/pt-thread-halt.c
index d721500..ba9f2b0 100644
--- a/libpthread/sysdeps/viengoos/pt-thread-halt.c
+++ b/libpthread/sysdeps/viengoos/pt-thread-halt.c
@@ -42,10 +42,10 @@ __pthread_thread_halt (struct __pthread *thread)
}
else
{
- error_t err = thread_stop (thread->object);
+ error_t err = vg_thread_stop (thread->object);
if (err)
- panic ("Failed to halt " ADDR_FMT ": %d",
- ADDR_PRINTF (thread->object), err);
+ panic ("Failed to halt " VG_ADDR_FMT ": %d",
+ VG_ADDR_PRINTF (thread->object), err);
}
}
}