]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: timers: clock_setres: make no-op
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 27 Nov 2018 12:59:37 +0000 (13:59 +0100)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 29 Nov 2018 09:01:57 +0000 (10:01 +0100)
clock_setres is a questionable function only existing on QNX.
Disable the function, just return success for CLOCK_REALTIME
to maintain backward compatibility.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/times.cc

index 4e405b2dfa92ab41ed2cbae2665106b85d049b2b..c557e8273e8956f6cc3c89460bafeed999681580 100644 (file)
@@ -688,47 +688,13 @@ clock_getres (clockid_t clk_id, struct timespec *tp)
 extern "C" int
 clock_setres (clockid_t clk_id, struct timespec *tp)
 {
-  static NO_COPY bool period_set;
-  int status;
-
+  /* Don't use this function.  It only exists in QNX.  Just return
+     success on CLOCK_REALTIME for backward compat. */
   if (clk_id != CLOCK_REALTIME)
     {
       set_errno (EINVAL);
       return -1;
     }
-
-  /* Convert to 100ns to match OS resolution.  The OS uses ULONG values
-     to express resolution in 100ns units, so the coarsest timer resolution
-     is < 430 secs.  Actually the coarsest timer resolution is only slightly
-     beyond 15ms, but this might change in future OS versions, so we play nice
-     here. */
-  ULONGLONG period = tp->tv_sec * NS100PERSEC
-                    + (tp->tv_nsec + (NSPERSEC/NS100PERSEC) - 1)
-                      / (NSPERSEC/NS100PERSEC);
-
-  /* clock_setres is non-POSIX/non-Linux.  On QNX, the function always
-     rounds the incoming value to the nearest supported value. */
-  ULONG coarsest, finest, actual;
-  if (NT_SUCCESS (NtQueryTimerResolution (&coarsest, &finest, &actual)))
-    {
-      if (period > coarsest)
-       period = coarsest;
-      else if (finest > period)
-       period = finest;
-    }
-
-  if (period_set
-      && NT_SUCCESS (NtSetTimerResolution (minperiod, FALSE, &actual)))
-    period_set = false;
-
-  status = NtSetTimerResolution (period, TRUE, &actual);
-  if (!NT_SUCCESS (status))
-    {
-      __seterrno_from_nt_status (status);
-      return -1;
-    }
-  minperiod = period;
-  period_set = true;
   return 0;
 }
 
This page took 0.03437 seconds and 5 git commands to generate.