From f9c8ceca1500dd92e8de1c1f39b07703ad8aeec4 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 21 Oct 2020 12:53:45 -0400 Subject: [PATCH] chore: update extern to match integral MHz --- runtime/include/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/include/runtime.h b/runtime/include/runtime.h index 2ac8826..01625be 100644 --- a/runtime/include/runtime.h +++ b/runtime/include/runtime.h @@ -28,7 +28,7 @@ extern FILE *runtime_sandbox_perf_log; * Assumption: All cores are the same speed * See runtime_get_processor_speed_MHz for further details */ -extern float runtime_processor_speed_MHz; +extern uint32_t runtime_processor_speed_MHz; /* Count of worker threads and array of their pthread identifiers */ extern pthread_t runtime_worker_threads[];