[SRE] Improved token fixups processing.
[mono.git] / mono / utils / mono-threads-linux.c
1 #include <config.h>
2
3 #if defined(__linux__) && !defined(PLATFORM_ANDROID)
4
5 #include <mono/utils/mono-threads.h>
6 #include <pthread.h>
7
8 void
9 mono_threads_core_get_stack_bounds (guint8 **staddr, size_t *stsize)
10 {
11         pthread_attr_t attr;
12
13         *staddr = NULL;
14         *stsize = (size_t)-1;
15
16         pthread_getattr_np (pthread_self (), &attr);
17         pthread_attr_getstack (&attr, (void**)staddr, stsize);
18         pthread_attr_destroy (&attr);
19 }
20
21 #endif