From f30c01500208d4c459986a32cd4e36bc2a483789 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 18 May 2018 00:24:30 +0300 Subject: Rename GC_dirty_async back to GC_dirty (fix of commit bb8e97c) * include/private/gc_priv.h [MANUAL_VDB] (GC_dirty_async_inner): Rename to GC_dirty_inner; add comment. * os_dep.c [MANUAL_VDB] (GC_dirty_async_inner): Likewise. * include/private/gc_priv.h (GC_dirty_async): Rename to GC_dirty. * mallocx.c (GC_end_stubborn_change): Rename GC_dirty_async to GC_dirty. * mark.c [THREADS] (GC_mark_and_push_stack): Likewise. --- mallocx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mallocx.c') diff --git a/mallocx.c b/mallocx.c index b4ee570c..7b5cd5c3 100644 --- a/mallocx.c +++ b/mallocx.c @@ -613,5 +613,5 @@ GC_API void GC_CALL GC_change_stubborn(const void *p GC_ATTR_UNUSED) GC_API void GC_CALL GC_end_stubborn_change(const void *p) { - GC_dirty_async(p); /* entire object */ + GC_dirty(p); /* entire object */ } -- cgit v1.2.1