summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch')
-rw-r--r--meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
new file mode 100644
index 0000000000..f392ceafcc
--- /dev/null
+++ b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
@@ -0,0 +1,36 @@
1From 45b401a947af944c20b3c451a35dfe53bca5ef3b Mon Sep 17 00:00:00 2001
2From: Tim Orling <timothy.t.orling@linux.intel.com>
3Date: Thu, 28 Dec 2017 21:24:57 -0800
4Subject: [PATCH 1/3] comparison_fn_t is glibc specific, use raw signature in
5 function pointer
6
7Make it work with musl where comparison_fn_t is not provided
8
9Reuse the approach from systemd:
10systemd/0013-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
11
12Based on work by: Khem Raj <raj.khem@gmail.com>
13
14Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
15---
16Upstream-Status: Pending
17
18 src/util.h | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/src/util.h b/src/util.h
22index 561f9e7..e9cfd81 100644
23--- a/src/util.h
24+++ b/src/util.h
25@@ -57,7 +57,7 @@ extern char **saved_argv;
26 * Normal qsort requires base to be nonnull. Here were require
27 * that only if nmemb > 0.
28 */
29-static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) {
30+static inline void qsort_safe(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {
31 if (nmemb <= 1)
32 return;
33
34--
352.13.6
36