[runtime] Change how class failure is represented.
[mono.git] / mono / utils / mono-tls.h
1 /*
2  * mono-tls.h: Low-level TLS support
3  *
4  * Author:
5  *      Rodrigo Kumpera (kumpera@gmail.com)
6  *
7  * Copyright 2011 Novell, Inc (http://www.novell.com)
8  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
9  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
10  */
11
12 #ifndef __MONO_TLS_H__
13 #define __MONO_TLS_H__
14
15 #include <glib.h>
16
17 /* TLS entries used by the runtime */
18 typedef enum {
19         /* mono_thread_internal_current () */
20         TLS_KEY_THREAD = 0,
21         TLS_KEY_JIT_TLS = 1,
22         /* mono_domain_get () */
23         TLS_KEY_DOMAIN = 2,
24         TLS_KEY_LMF = 3,
25         TLS_KEY_SGEN_THREAD_INFO = 4,
26         TLS_KEY_BOEHM_GC_THREAD = 5,
27         TLS_KEY_LMF_ADDR = 6,
28         TLS_KEY_NUM = 7
29 } MonoTlsKey;
30
31 #ifdef HOST_WIN32
32
33 #include <windows.h>
34
35 #define MonoNativeTlsKey DWORD
36 #define mono_native_tls_alloc(key,destructor) ((*(key) = TlsAlloc ()) != TLS_OUT_OF_INDEXES && destructor == NULL)
37 #define mono_native_tls_free TlsFree
38 #define mono_native_tls_set_value TlsSetValue
39 #define mono_native_tls_get_value TlsGetValue
40
41 #else
42
43 #include <pthread.h>
44
45 #define MonoNativeTlsKey pthread_key_t
46 #define mono_native_tls_get_value pthread_getspecific
47
48 static inline int
49 mono_native_tls_alloc (MonoNativeTlsKey *key, void *destructor)
50 {
51         return pthread_key_create (key, (void (*)(void*)) destructor) == 0;
52 }
53
54 static inline void
55 mono_native_tls_free (MonoNativeTlsKey key)
56 {
57         pthread_key_delete (key);
58 }
59
60 static inline int
61 mono_native_tls_set_value (MonoNativeTlsKey key, gpointer value)
62 {
63         return !pthread_setspecific (key, value);
64 }
65
66 #endif /* HOST_WIN32 */
67
68 int mono_tls_key_get_offset (MonoTlsKey key);
69 void mono_tls_key_set_offset (MonoTlsKey key, int offset);
70
71 #endif /* __MONO_TLS_H__ */