From 09160d508eb1ca7129366c162691bd411a9cbed8 Mon Sep 17 00:00:00 2001 From: ggunkin Date: Thu, 15 Aug 2024 20:24:39 +0300 Subject: [PATCH] fix: compiling with RMT_USE_CUDA, missing arg --- lib/Remotery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Remotery.c b/lib/Remotery.c index 4c57510..b91deb3 100644 --- a/lib/Remotery.c +++ b/lib/Remotery.c @@ -6584,7 +6584,7 @@ static rmtError Remotery_SendSampleTreeMessage(Remotery* rmt, Message* message) rmt_EndCPUSample(); if (!are_samples_ready) { - QueueSampleTree(rmt->mq_to_rmt_thread, sample, sample_tree->allocator, sample_tree->threadName, + QueueSampleTree(rmt->mq_to_rmt_thread, sample, sample_tree->allocator, sample_tree->threadName, 0, message->threadProfiler, RMT_FALSE); return RMT_ERROR_NONE; }