mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
* thread_pthread.c (get_stack): For NetBSD/FreeBSD, use
pthread_attr_getstack() if possible. and, remove an assumption of stack growing direction. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1e8adda1fc
commit
e6d42f34e2
2 changed files with 12 additions and 1 deletions
|
@ -479,9 +479,14 @@ get_stack(void **addr, size_t *size)
|
|||
# elif defined HAVE_PTHREAD_ATTR_GET_NP /* FreeBSD, DragonFly BSD, NetBSD */
|
||||
CHECK_ERR(pthread_attr_init(&attr));
|
||||
CHECK_ERR(pthread_attr_get_np(pthread_self(), &attr));
|
||||
# ifdef HAVE_PTHREAD_ATTR_GETSTACK
|
||||
CHECK_ERR(pthread_attr_getstack(&attr, addr, size));
|
||||
STACK_DIR_UPPER((void)0, (void)(*addr = (char *)*addr + *size));
|
||||
# else
|
||||
CHECK_ERR(pthread_attr_getstackaddr(&attr, addr));
|
||||
CHECK_ERR(pthread_attr_getstacksize(&attr, size));
|
||||
*addr = (char *)*addr + *size;
|
||||
STACK_DIR_UPPER((void)0, (void)(*addr = (char *)*addr + *size));
|
||||
# endif
|
||||
# else /* MacOS X */
|
||||
pthread_t th = pthread_self();
|
||||
*addr = pthread_get_stackaddr_np(th);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue