123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef __FTS_TIME_H
- #define __FTS_TIME_H
- #include <linux/time.h>
- #include "ftsCrossCompile.h"
- struct StopWatch {
- struct timespec64 start, end;
- };
- void startStopWatch(struct StopWatch *w);
- void stopStopWatch(struct StopWatch *w);
- int elapsedMillisecond(struct StopWatch *w);
- int elapsedNanosecond(struct StopWatch *w);
- char *timestamp(void);
- void stdelay(unsigned long ms);
- #endif
|