From c86b629133f6c7dac1fc5a4cf2f3317f163dd70c Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sat, 20 Jun 2015 00:26:07 +0300 Subject: [PATCH] Rename GCEventKind to GC_EventType (profiling event type) * include/gc.h (GCEventKind, GC_on_collection_event_proc): Rename GCEventKind to GC_EventType. --- include/gc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gc.h b/include/gc.h index 033ab5db..5ef479af 100644 --- a/include/gc.h +++ b/include/gc.h @@ -145,9 +145,9 @@ typedef enum { GC_EVENT_POST_START_WORLD /* STARTWORLD_END */, GC_EVENT_THREAD_SUSPENDED, GC_EVENT_THREAD_UNSUSPENDED -} GCEventKind; +} GC_EventType; -typedef void (GC_CALLBACK * GC_on_collection_event_proc)(GCEventKind, void*); +typedef void (GC_CALLBACK * GC_on_collection_event_proc)(GC_EventType, void*); /* Invoked to indicate progress through the */ /* collection process. */ /* Called with the world stopped (and the */ -- 2.49.0