X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2Fruntime.c;h=cd0c0e6123a81ab07a0ee56a2d4aabdf654b25c3;hb=6559b16c146623f16402c3504c19f94e0c0f4d7c;hp=df6643672e986ef898e953da9df44e256bcec00a;hpb=f89d6b0c76101fbff995ed8893f4724e079f60f3;p=mono.git diff --git a/mono/metadata/runtime.c b/mono/metadata/runtime.c index df6643672e9..cd0c0e6123a 100644 --- a/mono/metadata/runtime.c +++ b/mono/metadata/runtime.c @@ -1,5 +1,6 @@ -/* - * runtime.c: Runtime functions +/** + * \file + * Runtime functions * * Authors: * Jonathan Pryor @@ -27,11 +28,10 @@ static gboolean shutting_down = FALSE; /** * mono_runtime_set_shutting_down: + * \deprecated This function can break the shutdown sequence. * - * Invoked by System.Environment.Exit to flag that the runtime + * Invoked by \c System.Environment.Exit to flag that the runtime * is shutting down. - * - * Deprecated. This function can break the shutdown sequence. */ void mono_runtime_set_shutting_down (void) @@ -41,12 +41,8 @@ mono_runtime_set_shutting_down (void) /** * mono_runtime_is_shutting_down: - * - * Returns whether the runtime has been flagged for shutdown. - * - * This is consumed by the P:System.Environment.HasShutdownStarted - * property. - * + * This is consumed by the \c P:System.Environment.HasShutdownStarted property. + * \returns whether the runtime has been flagged for shutdown. */ gboolean mono_runtime_is_shutting_down (void) @@ -118,13 +114,6 @@ mono_runtime_try_shutdown (void) return TRUE; } - -gboolean -mono_runtime_is_critical_method (MonoMethod *method) -{ - return FALSE; -} - /* Coordinate the creation of all remaining TLS slots in the runtime. No further TLS slots should be created after this function finishes. @@ -156,4 +145,4 @@ mono_runtime_get_aotid (void) return NULL; return mono_guid_to_string ((guint8*) aotid); -} \ No newline at end of file +}