GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/micro_benchmark_ns.cpp Lines: 2 2 100.0 %
Date: 2025-03-16 06:08:08 Branches: 0 0 - %

Line Branch Exec Source
1
/***************************************
2
	Auteur : Pierre Aubert
3
	Mail : pierre.aubert@lapp.in2p3.fr
4
	Licence : CeCILL-C
5
****************************************/
6
7
#include "micro_benchmark_ns.h"
8
9
///Get the current time
10
/**	@return current time in nanosecond
11
*/
12
257760
HiPeTime phoenix_getTime(){
13
257760
	return HiPeClock::now();
14
}
15
16
17