aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chtm.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-29 15:13:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-07-29 15:13:52 +0000
commitf569bcec23452c190248aab184a125f3a52e2eb8 (patch)
treeee7b4be89b879597c2d82a49616d963696fbf78c /os/kernel/include/chtm.h
parentca4b2f91b7a24abeb6ea7fa43c1816397fb966c4 (diff)
downloadChibiOS-f569bcec23452c190248aab184a125f3a52e2eb8.tar.gz
ChibiOS-f569bcec23452c190248aab184a125f3a52e2eb8.tar.bz2
ChibiOS-f569bcec23452c190248aab184a125f3a52e2eb8.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6040 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chtm.h')
-rw-r--r--os/kernel/include/chtm.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/os/kernel/include/chtm.h b/os/kernel/include/chtm.h
index bd1d73dd9..8d8d021fd 100644
--- a/os/kernel/include/chtm.h
+++ b/os/kernel/include/chtm.h
@@ -81,13 +81,11 @@ typedef struct {
extern "C" {
#endif
void _tm_init(void);
- bool chTMIsCounterWithinX(rtcnt_t cnt, rtcnt_t start, rtcnt_t end);
- void chTMPolledDelayX(rtcnt_t cycles);
void chTMObjectInit(time_measurement_t *tmp);
- NOINLINE void chTMStartX(time_measurement_t *tmp);
- NOINLINE void chTMStopX(time_measurement_t *tmp);
- NOINLINE void chTMChainToX(time_measurement_t *tmp1,
- time_measurement_t *tmp2);
+ NOINLINE void chTMStartMeasurementX(time_measurement_t *tmp);
+ NOINLINE void chTMStopMeasurementX(time_measurement_t *tmp);
+ NOINLINE void chTMChainMeasurementToX(time_measurement_t *tmp1,
+ time_measurement_t *tmp2);
#ifdef __cplusplus
}
#endif