Project

General

Profile

Actions

Feature #13958

closed

[PATCH] Dir.empty? releases GVL

Added by normalperson (Eric Wong) over 6 years ago. Updated over 6 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:83071]

Description

This converts all slow syscalls in the Dir.empty? implementation
to release GVL. We avoid unnecessarily GVL release and
reacquire for each slow call (opendir, readdir, closedir) and
instead only release and acquire the GVL once in the common
case.

  • dir.c (rb_gc_for_fd_with_gvl): new function
    (nogvl_dir_empty_p): ditto
    (dir_s_empty_p): use new functions to release GVL

Files

0001-Dir.empty-releases-GVL.patch (3.08 KB) 0001-Dir.empty-releases-GVL.patch normalperson (Eric Wong), 10/01/2017 04:24 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0