Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
50f32415
Commit
50f32415
authored
Jul 13, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
declare PyThread_acquire_lock and PyThread_release_lock as nogil
parent
f07feb45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Cython/Includes/cpython/pythread.pxd
Cython/Includes/cpython/pythread.pxd
+3
-4
No files found.
Cython/Includes/cpython/pythread.pxd
View file @
50f32415
...
@@ -12,14 +12,13 @@ cdef extern from "pythread.h":
...
@@ -12,14 +12,13 @@ cdef extern from "pythread.h":
PyThread_type_lock
PyThread_allocate_lock
()
PyThread_type_lock
PyThread_allocate_lock
()
void
PyThread_free_lock
(
PyThread_type_lock
)
void
PyThread_free_lock
(
PyThread_type_lock
)
int
PyThread_acquire_lock
(
PyThread_type_lock
,
int
mode
)
int
PyThread_acquire_lock
(
PyThread_type_lock
,
int
mode
)
nogil
void
PyThread_release_lock
(
PyThread_type_lock
)
nogil
enum
:
enum
:
# 'mode' in PyThread_acquire_lock
WAIT_LOCK
# 1
WAIT_LOCK
# 1
NOWAIT_LOCK
# 0
NOWAIT_LOCK
# 0
void
PyThread_release_lock
(
PyThread_type_lock
)
size_t
PyThread_get_stacksize
()
size_t
PyThread_get_stacksize
()
int
PyThread_set_stacksize
(
size_t
)
int
PyThread_set_stacksize
(
size_t
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment