Skip to content
Snippets Groups Projects
Commit f7e1f769 authored by Pierrick Koch's avatar Pierrick Koch
Browse files

[wip/libnabo] update patch before gh/pr

parent 887ddbd7
No related branches found
No related tags found
No related merge requests found
......@@ -2,4 +2,4 @@ SHA1 (libnabo-1.0.4.tar.gz) = 1f71f0f6caf50996e3e61b87b2ac2c05c834518e
RMD160 (libnabo-1.0.4.tar.gz) = 5e025ce60f8c773178ce8c1ef7328608a16b63ca
Size (libnabo-1.0.4.tar.gz) = 963380 bytes
SHA1 (patch-aa) = fe3c4640351d88000aa694055468612a7c25ce43
SHA1 (patch-ab) = 19ee0764786c7759384c0bca543db1a0d02594a8
SHA1 (patch-ab) = 00d8739df225f360bf5cbacf02bfa2f0d73f6d17
diff --git tests/helpers.h tests/helpers.h
index 9f0a2f6..edb25d4 100644
index 9f0a2f6..54209d8 100644
--- tests/helpers.h
+++ tests/helpers.h
@@ -155,8 +155,12 @@ namespace boost
@@ -155,7 +155,11 @@ namespace boost
mach_port_deallocate(mach_task_self(), cclock);
#else
struct timespec ts;
+ #ifdef __NetBSD__
+ clock_gettime(CLOCK_PROF, &ts);
+ #else
+ #ifdef CLOCK_PROCESS_CPUTIME_ID
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
#endif
+ #else // BSD and old Linux
+ clock_gettime(CLOCK_PROF, &ts);
+ #endif
#endif
return Time(ts.tv_sec) * Time(1000000000) + Time(ts.tv_nsec);
}
Time _start_time;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment