summaryrefslogtreecommitdiff
path: root/libpthread/sysdeps/viengoos/pt-thread-halt.c
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-17 18:45:14 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-17 18:45:14 +0100
commit4b34130b861911b2fbc62e706239d55ce817d203 (patch)
tree0fb7f4a87b0813e7884b86b7a0a7390265083a2d /libpthread/sysdeps/viengoos/pt-thread-halt.c
parenta7416b7c63f4954ff78eecf31e5146cb86cda6a6 (diff)
Add a "vg_" to public viengoos identifiers.
2008-12-17 Neal H. Walfield <neal@gnu.org> * viengoos/activity.h: Add a "vg_" to public viengoos identifiers. Update users. * viengoos/addr-trans.h: Likewise. * viengoos/addr.h: Likewise. * viengoos/cap.h: Likewise. * viengoos/folio.h: Likewise. * viengoos/futex.h: Likewise. * viengoos/rpc.h: Likewise. * viengoos/thread.h: Likewise.
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);
}
}
}