diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-13 06:52:05 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-13 06:52:05 +0000 |
commit | 0a3b6213bbb8b9b3edaec944610eec48d213a81e (patch) | |
tree | 5223b9fca86dd9bad660deca5831c7e9cfc83c15 /src/helper | |
parent | 809a796209b5660bd4b968a48794211871f686b9 (diff) | |
download | openocd+libswd-0a3b6213bbb8b9b3edaec944610eec48d213a81e.tar.gz openocd+libswd-0a3b6213bbb8b9b3edaec944610eec48d213a81e.tar.bz2 openocd+libswd-0a3b6213bbb8b9b3edaec944610eec48d213a81e.tar.xz openocd+libswd-0a3b6213bbb8b9b3edaec944610eec48d213a81e.zip |
Laurentiu Cocanu <laurentiu.cocanu@zylin.com> - Added additional error checks mostly to src/target/target.c
git-svn-id: svn://svn.berlios.de/openocd/trunk@1041 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/time_support.c | 4 | ||||
-rw-r--r-- | src/helper/time_support.h | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/helper/time_support.c b/src/helper/time_support.c index b8ad45cb..6968ab7d 100644 --- a/src/helper/time_support.c +++ b/src/helper/time_support.c @@ -89,11 +89,9 @@ int timeval_add_time(struct timeval *result, int sec, int usec) return 0; } -int duration_start_measure(duration_t *duration) +void duration_start_measure(duration_t *duration) { gettimeofday(&duration->start, NULL); - - return ERROR_OK; } int duration_stop_measure(duration_t *duration, char **text) diff --git a/src/helper/time_support.h b/src/helper/time_support.h index 8594eb22..c7b8b404 100644 --- a/src/helper/time_support.h +++ b/src/helper/time_support.h @@ -49,7 +49,7 @@ typedef struct duration_s struct timeval duration; } duration_t; -extern int duration_start_measure(duration_t *duration); +extern void duration_start_measure(duration_t *duration); extern int duration_stop_measure(duration_t *duration, char **text); #endif /* TIME_SUPPORT_H */ |