gettime: Introduce fio_get_mono_time()
[fio.git] / configure
index 2d6588ae3d61cce2a25f49e2604c29566f133615..3846881c54e54f468d2aeec9f9ec2ffebcb6f27b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1104,26 +1104,6 @@ EOF
 fi
 print_config "CLOCK_MONOTONIC" "$clock_monotonic"
 
-##########################################
-# CLOCK_MONOTONIC_RAW probe
-if test "$clock_monotonic_raw" != "yes" ; then
-  clock_monotonic_raw="no"
-fi
-if test "$clock_gettime" = "yes" ; then
-  cat > $TMPC << EOF
-#include <stdio.h>
-#include <time.h>
-int main(int argc, char **argv)
-{
-  return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
-}
-EOF
-  if compile_prog "" "$LIBS" "clock monotonic"; then
-      clock_monotonic_raw="yes"
-  fi
-fi
-print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
-
 ##########################################
 # clockid_t probe
 if test "$clockid_t" != "yes" ; then