mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread_pthread.c (get_stack): need to adjust stack addr for
[Bug #1813] on AIX. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
74b339e938
commit
e4c452daf8
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jul 11 05:38:05 2011 Yutaka Kanemoto <kanemoto@ruby-lang.org>
|
||||
|
||||
* thread_pthread.c (get_stack): need to adjust stack addr for
|
||||
[Bug #1813] on AIX.
|
||||
|
||||
Mon Jul 11 01:16:27 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* thread_pthread.c (rb_thread_create_timer_thread): removed
|
||||
|
|
|
@ -518,6 +518,7 @@ get_stack(void **addr, size_t *size)
|
|||
®, ®siz));
|
||||
*addr = thinfo.__pi_stackaddr;
|
||||
*size = thinfo.__pi_stacksize;
|
||||
STACK_DIR_UPPER((void)0, (void)(*addr = (char *)*addr + *size));
|
||||
#else
|
||||
#error STACKADDR_AVAILABLE is defined but not implemented.
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue