aboutsummaryrefslogtreecommitdiff
path: root/devel/pecl-swoole/files/patch-src_coroutine_system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/pecl-swoole/files/patch-src_coroutine_system.cc')
-rw-r--r--devel/pecl-swoole/files/patch-src_coroutine_system.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/devel/pecl-swoole/files/patch-src_coroutine_system.cc b/devel/pecl-swoole/files/patch-src_coroutine_system.cc
deleted file mode 100644
index ad235fcfbf97..000000000000
--- a/devel/pecl-swoole/files/patch-src_coroutine_system.cc
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/coroutine/system.cc.orig 2024-11-28 03:39:05 UTC
-+++ src/coroutine/system.cc
-@@ -701,7 +701,8 @@ std::shared_ptr<AsyncLock> async_lock(void *resource)
- "resource(%p) has already been bound to another coroutine#%ld, "
- "%s of the same resource in coroutine#%ld at the same time is not allowed",
- resource,
-- *iter,
-+ iter->second,
-+ iter->first,
- Coroutine::get_current_cid());
- return nullptr;
- }