summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch')
-rw-r--r--meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch b/meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch
deleted file mode 100644
index 848ceb2c0c..0000000000
--- a/meta/recipes-support/libcap/files/0004-psx.c-replace-pthread_yield-with-standard-sched_yiel.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From a2c4cdb05d0e382101b13944c09c4375e8d7de5f Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 31 Mar 2020 13:39:28 +0200
4Subject: [PATCH] psx.c: replace pthread_yield() with standard sched_yield()
5
6This was causing failures when building with musl C library in
7particular.
8
9Upstream-Status: Pending
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12diff --git a/libcap/psx.c b/libcap/psx.c
13index 04d250f..7e4ac10 100644
14--- a/libcap/psx.c
15+++ b/libcap/psx.c
16@@ -533,7 +533,7 @@ long int __psx_syscall(long int syscall_nr, ...) {
17 if (!waiting) {
18 break;
19 }
20- pthread_yield();
21+ sched_yield();
22 }
23
24 errno = restore_errno;