Some function renamings were overlooked in the PEP; repair them.

This commit is contained in:
Tim Peters 2004-10-09 22:58:24 +00:00
parent abd928379d
commit bf4a5c7ebb
1 changed files with 3 additions and 3 deletions

View File

@ -184,14 +184,14 @@ Design and Implementation
- remember the current state of the lock (owned/not owned)
- If the current state does not own the GIL, acquire it.
- Increment a counter for how many calls to
PyAutoThreadState_Ensure have been made on the current thread.
PyGILState_Ensure have been made on the current thread.
- return
The general operation of PyAutoThreadState_Release() will be:
The general operation of PyGILState_Release() will be:
- assert our thread currently holds the lock.
- If old state indicates lock was previously unlocked, release GIL.
- Decrement the PyAutoThreadState_Ensure counter for the thread.
- Decrement the PyGILState_Ensure counter for the thread.
- If counter == 0:
- release and delete the PyThreadState.
- forget the ThreadState as being owned by the thread.