* times.cc (clock_setres): Set minperiod to period.

This commit is contained in:
Corinna Vinschen 2012-03-28 07:38:35 +00:00
parent f5e3a51ca0
commit 6680cb64f1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-03-28 Corinna Vinschen <corinna@vinschen.de>
* times.cc (clock_setres): Set minperiod to period.
2012-03-27 Corinna Vinschen <corinna@vinschen.de>
* fhandler_process.cc (process_tab): Add entry for mountinfo.

View File

@ -823,7 +823,7 @@ clock_setres (clockid_t clk_id, struct timespec *tp)
__seterrno_from_nt_status (status);
return -1;
}
minperiod = actual;
minperiod = period;
period_set = true;
return 0;
}