Skip to content
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
4 changes: 2 additions & 2 deletions Include/internal/pycore_lock.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ PyMutex_LockFlags(PyMutex *m, _PyLockFlags flags)
}
}

// Unlock a mutex, returns 0 if the mutex is not locked (used for improved
// error messages).
// Unlock a mutex, returns -1 if the mutex is not locked (used for improved
// error messages) otherwise returns 0;
extern int _PyMutex_TryUnlock(PyMutex *m);


Expand Down
Loading