summaryrefslogtreecommitdiff
path: root/pthread_stop_world.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2023-04-06 09:01:24 +0300
committerIvan Maidanski <ivmai@mail.ru>2023-04-06 13:17:41 +0300
commitfa2cc313eb64cff42a0e1724aee0122be2f034a8 (patch)
treea0d64c4b626cdf37eea5df95b0c5a822803afd1d /pthread_stop_world.c
parent3e35cb1fa09e80d601929bdb2f4b4ed51b50aa7a (diff)
downloadbdwgc-fa2cc313eb64cff42a0e1724aee0122be2f034a8.tar.gz
Refine debug message in GC_suspend_handler_inner
(refactoring) This is to match the similar message (for thread suspend and resume events) on Darwin and Win32 platforms. * pthread_stop_world.c [!NACL && DEBUG_THREADS] (GC_suspend_handler_inner): Refine printed message.
Diffstat (limited to 'pthread_stop_world.c')
-rw-r--r--pthread_stop_world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_stop_world.c b/pthread_stop_world.c
index f1ff6ea2..d45b8a17 100644
--- a/pthread_stop_world.c
+++ b/pthread_stop_world.c
@@ -406,7 +406,7 @@ STATIC void GC_suspend_handler_inner(ptr_t dummy, void *context)
);
# ifdef DEBUG_THREADS
- GC_log_printf("Continuing %p\n", (void *)pthread_self());
+ GC_log_printf("Resuming %p\n", (void *)pthread_self());
# endif
# ifdef E2K
GC_ASSERT(crtn -> backing_store_end == bs_lo);