aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/iscsi-initiator-utils/files/0002-iscsiuio-Use-pthread_t-for-INVALID_THREAD.patch
blob: 02669e9c80fddfc14db62324140282f8ad0193d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From ef54a6f4a81da8ab653d352bfbd3b2521ce9eb7c Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 29 Aug 2022 15:55:32 -0700
Subject: [PATCH] iscsiuio: Use pthread_t for INVALID_THREAD

pthread_t is opaque, therefore avoid compiler errors on musl when
compiling since pthread_t is not a plain old data type, like glibc

Upstream-Status: Submitted [https://github.com/open-iscsi/open-iscsi/pull/363]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 iscsiuio/src/unix/options.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iscsiuio/src/unix/options.h b/iscsiuio/src/unix/options.h
index 63b8635..873a98a 100644
--- a/iscsiuio/src/unix/options.h
+++ b/iscsiuio/src/unix/options.h
@@ -86,7 +86,7 @@
 #define DEBUG_ON	0x2
 
 #define INVALID_FD	-1
-#define INVALID_THREAD	-1
+#define INVALID_THREAD	(pthread_t)-1
 #define INVALID_HOST_NO	-1
 
 struct options {