ruby-changes:41071
From: usa <ko1@a...>
Date: Wed, 16 Dec 2015 16:08:47 +0900 (JST)
Subject: [ruby-changes:41071] usa:r53146 (ruby_2_1): merge revision(s) 52199: [Backport #11792]
usa 2015-12-16 16:08:26 +0900 (Wed, 16 Dec 2015) New Revision: 53146 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53146 Log: merge revision(s) 52199: [Backport #11792] * configure.in: pthread_getattr_np is broken on AIX. More specifically, the stack address and size returned are not correct. Modified directories: branches/ruby_2_1/ Modified files: branches/ruby_2_1/ChangeLog branches/ruby_2_1/configure.in branches/ruby_2_1/version.h Index: ruby_2_1/configure.in =================================================================== --- ruby_2_1/configure.in (revision 53145) +++ ruby_2_1/configure.in (revision 53146) @@ -2473,11 +2473,12 @@ if test x"$enable_pthread" = xyes; then https://github.com/ruby/ruby/blob/trunk/ruby_2_1/configure.in#L2473 AC_MSG_WARN("Don't know how to find pthread library on your system -- thread support disabled") fi AC_CHECK_FUNCS(sched_yield pthread_attr_setinheritsched \ - pthread_getattr_np pthread_attr_get_np pthread_attr_getstack\ + pthread_attr_get_np pthread_attr_getstack\ pthread_get_stackaddr_np pthread_get_stacksize_np \ thr_stksegment pthread_stackseg_np pthread_getthrds_np \ pthread_cond_init pthread_condattr_setclock pthread_condattr_init \ pthread_sigmask pthread_setname_np) + AS_CASE(["$target_os"],[aix*],[ac_cv_func_pthread_getattr_np=no],[AC_CHECK_FUNCS(pthread_getattr_np)]) if test "${host_os}" = "nacl"; then ac_cv_func_pthread_attr_init=no else Index: ruby_2_1/ChangeLog =================================================================== --- ruby_2_1/ChangeLog (revision 53145) +++ ruby_2_1/ChangeLog (revision 53146) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/ChangeLog#L1 +Wed Dec 16 16:07:29 2015 Rei Odaira <Rei.Odaira@g...> + + * configure.in: pthread_getattr_np is broken on AIX. + More specifically, the stack address and size returned are + not correct. + Wed Dec 16 16:04:27 2015 Eric Wong <e@8...> * insns.def (opt_case_dispatch): check Float#=== redefinition Index: ruby_2_1/version.h =================================================================== --- ruby_2_1/version.h (revision 53145) +++ ruby_2_1/version.h (revision 53146) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_1/version.h#L1 #define RUBY_VERSION "2.1.8" #define RUBY_RELEASE_DATE "2015-12-16" -#define RUBY_PATCHLEVEL 435 +#define RUBY_PATCHLEVEL 436 #define RUBY_RELEASE_YEAR 2015 #define RUBY_RELEASE_MONTH 12 Property changes on: ruby_2_1 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r52199 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/