|
@@ -0,0 +1,42 @@
|
|
|
+From f1582f417aaf8f4fa7f1828f2504ba2f03909819 Mon Sep 17 00:00:00 2001
|
|
|
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
|
+Date: Sat, 25 Jan 2020 23:35:54 +0100
|
|
|
+Subject: [PATCH] lib/gensio_selector.c: fix definition of
|
|
|
+ pthread_mutex_destroy
|
|
|
+
|
|
|
+Fix definition of pthread_mutex_destroy otherwise build without threads
|
|
|
+will fail on:
|
|
|
+
|
|
|
+gensio_selector.c: In function 'gensio_sel_free_lock':
|
|
|
+gensio_selector.c:82:38: error: macro "pthread_mutex_destroy" requires 2 arguments, but only 1 given
|
|
|
+ pthread_mutex_destroy(&lock->lock);
|
|
|
+ ^
|
|
|
+gensio_selector.c:82:5: error: 'pthread_mutex_destroy' undeclared (first use in this function)
|
|
|
+ pthread_mutex_destroy(&lock->lock);
|
|
|
+ ^~~~~~~~~~~~~~~~~~~~~
|
|
|
+
|
|
|
+Fixes:
|
|
|
+ - http://autobuild.buildroot.org/results/b5847ac9e818571b746e2a81cf830b6caf50a7d7
|
|
|
+
|
|
|
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
|
+[Upstream status: https://github.com/cminyard/gensio/pull/8]
|
|
|
+---
|
|
|
+ lib/gensio_selector.c | 2 +-
|
|
|
+ 1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
+
|
|
|
+diff --git a/lib/gensio_selector.c b/lib/gensio_selector.c
|
|
|
+index a3bec38..615ab61 100644
|
|
|
+--- a/lib/gensio_selector.c
|
|
|
++++ b/lib/gensio_selector.c
|
|
|
+@@ -29,7 +29,7 @@
|
|
|
+ #define pthread_mutex_lock(l) do { } while (0)
|
|
|
+ #define pthread_mutex_unlock(l) do { } while (0)
|
|
|
+ #define pthread_mutex_init(l, n) do { } while (0)
|
|
|
+-#define pthread_mutex_destroy(l, n) do { } while (0)
|
|
|
++#define pthread_mutex_destroy(l) do { } while (0)
|
|
|
+ #define PTHREAD_MUTEX_INITIALIZER 0
|
|
|
+ #endif
|
|
|
+
|
|
|
+--
|
|
|
+2.24.1
|
|
|
+
|