* times.cc (clock_setres): Revert previous change.

This commit is contained in:
Corinna Vinschen 2012-03-27 08:50:45 +00:00
parent c2c7860fff
commit 4b6a427b0a
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2012-03-27 Corinna Vinschen <corinna@vinschen.de>
* times.cc (clock_setres): Revert previous change.
2012-03-26 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (class fhandler_dev_clipboard): Add fstat method.

View File

@ -823,10 +823,7 @@ clock_setres (clockid_t clk_id, struct timespec *tp)
__seterrno_from_nt_status (status);
return -1;
}
/* The actual resolution of the OS timer is a system-wide setting which
can be changed any time, by any process. The only fixed value we can
rely on is the coarsest value. */
minperiod = coarsest;
minperiod = actual;
period_set = true;
return 0;
}