Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-02-07 12:51:20 +0300
committerMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-02-07 12:51:20 +0300
commitf39662b1fe25649ca64f9ac3143f6471b7764fac (patch)
tree8b47e1d5f89395cfe28f6cab45f944ad1d7c7aeb /libgc/include
parentb7cab28d055617c6966ff739223cbfdf7e509f28 (diff)
* include/gc.h: (GCEventType): Added start-stop the world events.
* pthread_stop_world.c: (GC_stop_world and GC_start_world): hooked svn path=/trunk/mono/; revision=95125
Diffstat (limited to 'libgc/include')
-rw-r--r--libgc/include/gc.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libgc/include/gc.h b/libgc/include/gc.h
index ba73ea09a55..375cc18a554 100644
--- a/libgc/include/gc.h
+++ b/libgc/include/gc.h
@@ -98,7 +98,11 @@ typedef enum {
GC_EVENT_MARK_END,
GC_EVENT_RECLAIM_START,
GC_EVENT_RECLAIM_END,
- GC_EVENT_END
+ GC_EVENT_END,
+ GC_EVENT_PRE_STOP_WORLD,
+ GC_EVENT_POST_STOP_WORLD,
+ GC_EVENT_PRE_START_WORLD,
+ GC_EVENT_POST_START_WORLD
} GCEventType;
GC_API void (*GC_notify_event) GC_PROTO((GCEventType event_type));