From cf7630078a53ff74b245b148bd722994068e28f9 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 28 Oct 2022 15:59:37 +0100 Subject: gentoo auto-resync : 28:10:2022 - 15:59:37 --- .../files/uvloop-0.15.3-uint64-thread-id.patch | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 dev-python/uvloop/files/uvloop-0.15.3-uint64-thread-id.patch (limited to 'dev-python/uvloop/files/uvloop-0.15.3-uint64-thread-id.patch') diff --git a/dev-python/uvloop/files/uvloop-0.15.3-uint64-thread-id.patch b/dev-python/uvloop/files/uvloop-0.15.3-uint64-thread-id.patch deleted file mode 100644 index a74fedd308e9..000000000000 --- a/dev-python/uvloop/files/uvloop-0.15.3-uint64-thread-id.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 732df28f0739d84c687d3e6d81995dafa18ac775 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Wed, 28 Jul 2021 09:21:00 +0200 -Subject: [PATCH] Revert 32-bit thread ID hack - -Apparently the hack used to fix 32-bit platforms actually breaks 64-bit -platforms using large thread IDs (e.g. sparc). - -Reverts: b5b4abb16ba558cf957cf40120dfd4937c53aea5 ---- - uvloop/includes/stdlib.pxi | 2 +- - uvloop/loop.pyx | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/uvloop/includes/stdlib.pxi b/uvloop/includes/stdlib.pxi -index adf9806..21d69e6 100644 ---- a/uvloop/includes/stdlib.pxi -+++ b/uvloop/includes/stdlib.pxi -@@ -135,7 +135,7 @@ cdef int ssl_SSL_ERROR_WANT_READ = ssl.SSL_ERROR_WANT_READ - cdef int ssl_SSL_ERROR_WANT_WRITE = ssl.SSL_ERROR_WANT_WRITE - cdef int ssl_SSL_ERROR_SYSCALL = ssl.SSL_ERROR_SYSCALL - --cdef uint64_t MAIN_THREAD_ID = threading.main_thread().ident -+cdef uint64_t MAIN_THREAD_ID = threading.main_thread().ident - cdef threading_Thread = threading.Thread - - cdef int subprocess_PIPE = subprocess.PIPE -diff --git a/uvloop/loop.pyx b/uvloop/loop.pyx -index d9b5aaa..96c9cde 100644 ---- a/uvloop/loop.pyx -+++ b/uvloop/loop.pyx -@@ -707,7 +707,7 @@ cdef class Loop: - return - - cdef uint64_t thread_id -- thread_id = PyThread_get_thread_ident() -+ thread_id = PyThread_get_thread_ident() - - if thread_id != self._thread_id: - raise RuntimeError( --- -2.32.0 - -- cgit v1.2.3