8000 [3.6] bpo-33021: Release the GIL during fstat() calls (GH-6019) by miss-islington · Pull Request #6160 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.6] bpo-33021: Release the GIL during fstat() calls (GH-6019) #6160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 20, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix compiler warning
  • Loading branch information
pitrou authored Mar 20, 2018
commit 377361a110c63f81cd13eec2eca8f8e4241b4a92
2 changes: 1 addition & 1 deletion Modules/mmapmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ static PyObject *
new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
{
struct _Py_stat_struct status;
int fstat_result;
int fstat_result = -1;
mmap_object *m_obj;
Py_ssize_t map_size;
off_t offset = 0;
Expand Down
0