View | Details | Raw Unified | Return to bug 218885 | Differences between
and this patch

Collapse All | Expand All

(-)mono/utils/mono-compiler.h (-2 / +2 lines)
Lines 54-66 Link Here
54
   For now we will disable this. */
54
   For now we will disable this. */
55
#define MONO_TLS_FAST
55
#define MONO_TLS_FAST
56
#else
56
#else
57
#define MONO_TLS_FAST __attribute__((tls_model("local-dynamic")))
57
#define MONO_TLS_FAST __attribute__((tls_model("local-dynamic"))) __attribute__((visability("hidden")))
58
#endif
58
#endif
59
#endif
59
#endif
60
60
61
#else
61
#else
62
62
63
#define MONO_TLS_FAST __attribute__((tls_model("local-exec")))
63
#define MONO_TLS_FAST __attribute__((tls_model("local-exec"))) __attribute__((visability("hidden")))
64
64
65
#endif
65
#endif
66
66

Return to bug 218885