Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7899acfc
Kaydet (Commit)
7899acfc
authored
Mar 30, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11618: Fix the timeout logic in threading.Lock.acquire() under
Windows.
üst
8c5b7480
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
59 deletions
+20
-59
lock_tests.py
Lib/test/lock_tests.py
+10
-0
NEWS
Misc/NEWS
+2
-0
thread_nt.h
Python/thread_nt.h
+8
-59
No files found.
Lib/test/lock_tests.py
Dosyayı görüntüle @
7899acfc
...
@@ -213,6 +213,16 @@ class LockTests(BaseLockTests):
...
@@ -213,6 +213,16 @@ class LockTests(BaseLockTests):
lock
.
acquire
()
lock
.
acquire
()
lock
.
release
()
lock
.
release
()
def
test_state_after_timeout
(
self
):
# Issue #11618: check that lock is in a proper state after a
# (non-zero) timeout.
lock
=
self
.
locktype
()
lock
.
acquire
()
self
.
assertFalse
(
lock
.
acquire
(
timeout
=
0.01
))
lock
.
release
()
self
.
assertFalse
(
lock
.
locked
())
self
.
assertTrue
(
lock
.
acquire
(
blocking
=
False
))
class
RLockTests
(
BaseLockTests
):
class
RLockTests
(
BaseLockTests
):
"""
"""
...
...
Misc/NEWS
Dosyayı görüntüle @
7899acfc
...
@@ -49,6 +49,8 @@ Core and Builtins
...
@@ -49,6 +49,8 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
11618
:
Fix
the
timeout
logic
in
threading
.
Lock
.
acquire
()
under
Windows
.
-
Issue
#
11256
:
Fix
inspect
.
getcallargs
on
functions
that
take
only
keyword
-
Issue
#
11256
:
Fix
inspect
.
getcallargs
on
functions
that
take
only
keyword
arguments
.
arguments
.
...
...
Python/thread_nt.h
Dosyayı görüntüle @
7899acfc
...
@@ -9,82 +9,31 @@
...
@@ -9,82 +9,31 @@
#include <process.h>
#include <process.h>
#endif
#endif
typedef
struct
NRMUTEX
{
#define PNRMUTEX HANDLE
LONG
owned
;
DWORD
thread_id
;
HANDLE
hevent
;
}
NRMUTEX
,
*
PNRMUTEX
;
PNRMUTEX
BOOL
AllocNonRecursiveMutex
()
InitializeNonRecursiveMutex
(
PNRMUTEX
mutex
)
{
{
mutex
->
owned
=
-
1
;
/* No threads have entered NonRecursiveMutex */
return
CreateSemaphore
(
NULL
,
1
,
1
,
NULL
);
mutex
->
thread_id
=
0
;
mutex
->
hevent
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
NULL
)
;
return
mutex
->
hevent
!=
NULL
;
/* TRUE if the mutex is created */
}
}
VOID
VOID
Delet
eNonRecursiveMutex
(
PNRMUTEX
mutex
)
Fre
eNonRecursiveMutex
(
PNRMUTEX
mutex
)
{
{
/* No in-use check */
/* No in-use check */
CloseHandle
(
mutex
->
hevent
)
;
CloseHandle
(
mutex
);
mutex
->
hevent
=
NULL
;
/* Just in case */
}
}
DWORD
DWORD
EnterNonRecursiveMutex
(
PNRMUTEX
mutex
,
DWORD
milliseconds
)
EnterNonRecursiveMutex
(
PNRMUTEX
mutex
,
DWORD
milliseconds
)
{
{
/* Assume that the thread waits successfully */
return
WaitForSingleObject
(
mutex
,
milliseconds
);
DWORD
ret
;
/* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */
if
(
milliseconds
==
0
)
{
if
(
InterlockedCompareExchange
(
&
mutex
->
owned
,
0
,
-
1
)
!=
-
1
)
return
WAIT_TIMEOUT
;
ret
=
WAIT_OBJECT_0
;
}
else
ret
=
InterlockedIncrement
(
&
mutex
->
owned
)
?
/* Some thread owns the mutex, let's wait... */
WaitForSingleObject
(
mutex
->
hevent
,
milliseconds
)
:
WAIT_OBJECT_0
;
mutex
->
thread_id
=
GetCurrentThreadId
()
;
/* We own it */
return
ret
;
}
}
BOOL
BOOL
LeaveNonRecursiveMutex
(
PNRMUTEX
mutex
)
LeaveNonRecursiveMutex
(
PNRMUTEX
mutex
)
{
{
/* We don't own the mutex */
return
ReleaseSemaphore
(
mutex
,
1
,
NULL
);
mutex
->
thread_id
=
0
;
return
InterlockedDecrement
(
&
mutex
->
owned
)
<
0
||
SetEvent
(
mutex
->
hevent
)
;
/* Other threads are waiting, wake one on them up */
}
PNRMUTEX
AllocNonRecursiveMutex
(
void
)
{
PNRMUTEX
mutex
=
(
PNRMUTEX
)
malloc
(
sizeof
(
NRMUTEX
))
;
if
(
mutex
&&
!
InitializeNonRecursiveMutex
(
mutex
))
{
free
(
mutex
)
;
mutex
=
NULL
;
}
return
mutex
;
}
void
FreeNonRecursiveMutex
(
PNRMUTEX
mutex
)
{
if
(
mutex
)
{
DeleteNonRecursiveMutex
(
mutex
)
;
free
(
mutex
)
;
}
}
}
long
PyThread_get_thread_ident
(
void
);
long
PyThread_get_thread_ident
(
void
);
...
...
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