From 30325d24d107dbf133da39f7c96d1510fd1c9449 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Fri, 15 Aug 2025 12:42:40 +0200 Subject: Bump to codec2 version 1.2.0 --- machdep.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'machdep.h') diff --git a/machdep.h b/machdep.h index 4dff9ba..e17b5fa 100644 --- a/machdep.h +++ b/machdep.h @@ -4,7 +4,7 @@ AUTHOR......: David Rowe DATE CREATED: May 2 2013 - Machine dependant functions, e.g. profiling that requires access to a clock + Machine dependent functions, e.g. profiling that requires access to a clock counter register. \*---------------------------------------------------------------------------*/ @@ -33,9 +33,9 @@ #define PROFILE_VAR(...) unsigned int __VA_ARGS__ #define PROFILE_SAMPLE(timestamp) timestamp = machdep_profile_sample() #define PROFILE_SAMPLE_AND_LOG(timestamp, prev_timestamp, label) \ - timestamp = machdep_profile_sample_and_log(prev_timestamp, label) + timestamp = machdep_profile_sample_and_log(prev_timestamp, label) #define PROFILE_SAMPLE_AND_LOG2(prev_timestamp, label) \ - machdep_profile_sample_and_log(prev_timestamp, label) + machdep_profile_sample_and_log(prev_timestamp, label) #else #define PROFILE_VAR(...) #define PROFILE_SAMPLE(timestamp) @@ -43,10 +43,10 @@ #define PROFILE_SAMPLE_AND_LOG2(prev_timestamp, label) #endif -void machdep_profile_init(void); -void machdep_profile_reset(void); +void machdep_profile_init(void); +void machdep_profile_reset(void); unsigned int machdep_profile_sample(void); unsigned int machdep_profile_sample_and_log(unsigned int start, char s[]); -void machdep_profile_print_logged_samples(void); +void machdep_profile_print_logged_samples(void); #endif -- cgit v1.2.3