follow r51064

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-07-21 23:24:18 +00:00
parent 30223e7f68
commit 8c1a75a3bf

View File

@ -920,12 +920,12 @@ define rb_ps_vm
set $ps_threads_i = $ps_threads_i + 1 set $ps_threads_i = $ps_threads_i + 1
end end
else else
set $ps_threads_ptr = (st_table_entry*)$ps_threads->head set $ps_threads_ptr = (st_table_entry*)$ps_threads->as.big.private_list_head[0]
while $ps_threads_ptr while $ps_threads_ptr
set $ps_threads_key = (st_data_t)$ps_threads_ptr->key set $ps_threads_key = (st_data_t)$ps_threads_ptr->key
set $ps_threads_val = (st_data_t)$ps_threads_ptr->record set $ps_threads_val = (st_data_t)$ps_threads_ptr->record
rb_ps_thread $ps_threads_key $ps_threads_val rb_ps_thread $ps_threads_key $ps_threads_val
set $ps_threads_ptr = (st_table_entry*)$ps_threads_ptr->fore set $ps_threads_ptr = (st_table_entry*)$ps_threads_ptr->olist.next
end end
end end
end end