summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac1
-rw-r--r--libusb/os/linux_netlink.c6
-rw-r--r--libusb/os/linux_udev.c6
-rw-r--r--libusb/version_nano.h2
4 files changed, 14 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 53a904e..6512078 100644
--- a/configure.ac
+++ b/configure.ac
@@ -143,6 +143,7 @@ linux)
THREAD_CFLAGS="-pthread"
LIBS="${LIBS} -pthread"
fi
+ AC_CHECK_FUNCS([pthread_setname_np])
;;
netbsd)
AC_DEFINE([OS_NETBSD], [1], [NetBSD backend])
diff --git a/libusb/os/linux_netlink.c b/libusb/os/linux_netlink.c
index 025ddd5..9917df2 100644
--- a/libusb/os/linux_netlink.c
+++ b/libusb/os/linux_netlink.c
@@ -365,6 +365,12 @@ static void *linux_netlink_event_thread_main(void *arg)
UNUSED(arg);
+#if defined(HAVE_PTHREAD_SETNAME_NP)
+ r = pthread_setname_np(pthread_self(), "libusb_event");
+ if (r)
+ usbi_warn(NULL, "failed to set hotplug event thread name, error=%d", r);
+#endif
+
usbi_dbg("netlink event thread entering");
while ((r = poll(fds, 2, -1)) >= 0 || errno == EINTR) {
diff --git a/libusb/os/linux_udev.c b/libusb/os/linux_udev.c
index d079c79..d8851cf 100644
--- a/libusb/os/linux_udev.c
+++ b/libusb/os/linux_udev.c
@@ -176,6 +176,12 @@ static void *linux_udev_event_thread_main(void *arg)
.events = POLLIN},
};
+#if defined(HAVE_PTHREAD_SETNAME_NP)
+ r = pthread_setname_np(pthread_self(), "libusb_event");
+ if (r)
+ usbi_warn(NULL, "failed to set hotplug event thread name, error=%d", r);
+#endif
+
usbi_dbg("udev event thread entering.");
while ((r = poll(fds, 2, -1)) >= 0 || errno == EINTR) {
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index 2256782..05e7280 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11455
+#define LIBUSB_NANO 11456