From 87ee609339052b9b5b8e9d850d84b4d26a73eceb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 3 Jun 2022 05:32:14 +0200 Subject: [PATCH] Amend previous commit, fix debug print format --- libs/pbd/pthread_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pthread_utils.cc b/libs/pbd/pthread_utils.cc index 347a9fe0bf..33054a4222 100644 --- a/libs/pbd/pthread_utils.cc +++ b/libs/pbd/pthread_utils.cc @@ -423,7 +423,7 @@ pbd_mach_set_realtime_policy (pthread_t thread_id, double period_ns, bool main) tcp.preemptible = true; #ifndef NDEBUG - printf ("period_ns=%f period_clk=%d timebase.num=%d timebase_den=%d ticks_per_ns=%f\n", period_ns, period_clk, timebase.numer, timebase.denom, ticks_per_ns); + printf ("period_ns=%f period_clk=%f timebase.num=%d timebase_den=%d ticks_per_ns=%f\n", period_ns, period_clk, timebase.numer, timebase.denom, ticks_per_ns); printf ("Mach Thread(%p) request: period=%d comp=%d constraint=%d preemt=%d\n", thread_id, tcp.period, tcp.computation, tcp.constraint, tcp.preemptible); #endif