We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ec4d4 commit eecbeecCopy full SHA for eecbeec
1 file changed
Python/ceval_gil.h
@@ -133,12 +133,14 @@ static void destroy_gil(struct _gil_runtime_state *gil)
133
_Py_ANNOTATE_RWLOCK_DESTROY(&gil->locked);
134
}
135
136
+#ifdef HAVE_FORK
137
static void recreate_gil(struct _gil_runtime_state *gil)
138
{
139
140
/* XXX should we destroy the old OS resources here? */
141
create_gil(gil);
142
143
+#endif
144
145
static void
146
drop_gil(struct _ceval_runtime_state *ceval, struct _ceval_state *ceval2,
0 commit comments