summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Thomas Petazzoni 2016-02-12 10:18:08 +0100
committerGravatar Stefan Richter 2016-03-20 17:08:48 +0100
commit0ef8fab9e467c170475f9c6232de9ab953a7226d (patch)
tree71efb62d2ecc879fc668bbbad7b9326c167ed1bf
parentUse <stdint.h> types instead of non-standard types (diff)
testlibraw: build the CLOCK_MONOTONIC_RAW test conditionally
CLOCK_MONOTONIC_RAW is a somewhat recent addition, and some older toolchains/kernels may not have the support for it. Therefore, we build the part of the test that uses CLOCK_MONOTONIC_RAW only when this definition is available. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r--tools/testlibraw.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testlibraw.c b/tools/testlibraw.c
index d8a0702..ae37157 100644
--- a/tools/testlibraw.c
+++ b/tools/testlibraw.c
@@ -211,6 +211,7 @@ read_cycle_timer(raw1394handle_t handle)
printf(" local time from CLOCK_MONOTONIC: %lld us\n",
(unsigned long long)local_time);
+#if defined(CLOCK_MONOTONIC_RAW)
retval = raw1394_read_cycle_timer_and_clock(handle, &ct, &local_time,
CLOCK_MONOTONIC_RAW);
if (retval < 0) {
@@ -221,6 +222,7 @@ read_cycle_timer(raw1394handle_t handle)
ct >> 25, (ct >> 12) & 0x1fff, ct & 0xfff);
printf(" local time from CLOCK_MONOTONIC_RAW: %lld us\n",
(unsigned long long)local_time);
+#endif
}
int test_card(int card)