From 8025322857302744617508639990950630312249 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 22 Jul 2024 16:20:36 -0400 Subject: API for setting the current OS thread's name For debugging threads when you have like 50 and want to find one at a glance --- binaryninjacore.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index 18bd2faf..3c45ff88 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -6619,6 +6619,8 @@ extern "C" BINARYNINJACOREAPI size_t BNGetWorkerThreadCount(void); BINARYNINJACOREAPI void BNSetWorkerThreadCount(size_t count); + BINARYNINJACOREAPI void BNSetThreadName(const char* name); + // Background task progress reporting BINARYNINJACOREAPI BNBackgroundTask* BNBeginBackgroundTask(const char* initialText, bool canCancel); BINARYNINJACOREAPI void BNFinishBackgroundTask(BNBackgroundTask* task); -- cgit v1.3.1