diff options
| author | drowe67 <[email protected]> | 2023-07-14 12:36:50 +0930 |
|---|---|---|
| committer | David Rowe <[email protected]> | 2023-07-14 12:36:50 +0930 |
| commit | b86e88413d4c6ec428aaedb147f7675f28882fe4 (patch) | |
| tree | ce360925856e25d4343d59a37e2e6bac142d3752 /src/machdep.h | |
| parent | 0c2e969cfbe85548801eeb20ad8113969604892a (diff) | |
clang-format -i applied to src unittest misc
Diffstat (limited to 'src/machdep.h')
| -rw-r--r-- | src/machdep.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/machdep.h b/src/machdep.h index cd6b00f..e17b5fa 100644 --- a/src/machdep.h +++ b/src/machdep.h @@ -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 |
