Actions
Bug #18997
closedDon't define ruby_qsort when POSIX qsort_r is available
Bug #18997:
Don't define ruby_qsort when POSIX qsort_r is available
Description
The current code would define ruby_qsort as a wrapper of qsort_s when it is available. When both qsort_s and POSIX (GNU) qsort_r are available, we should call qsort_r directly instead, and the qsort_s wrapper is redundant.
Proposed patch at https://github.com/ruby/ruby/pull/6332 and can be applied on Ruby 2.7 and newer Ruby versions
Actions