Merge pull request #656 from LogosBible/collection_lock
[mono.git] / mono / metadata / runtime.h
1 /*
2  * runtime.h: Runtime functions
3  *
4  * Author:
5  *      Jonathan Pryor
6  *
7  * (C) 2010 Novell, Inc.
8  */
9
10 #ifndef _MONO_METADATA_RUNTIME_H_
11 #define _MONO_METADATA_RUNTIME_H_
12
13 #include <mono/utils/mono-publib.h>
14
15 MONO_BEGIN_DECLS
16
17 gboolean mono_runtime_is_critical_method (MonoMethod *method) MONO_INTERNAL;
18 gboolean mono_runtime_try_shutdown (void) MONO_INTERNAL;
19
20 void mono_runtime_init_tls (void) MONO_INTERNAL;
21 MONO_END_DECLS
22
23 #endif /* _MONO_METADATA_RUNTIME_H_ */
24
25