diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 13:13:21 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 13:13:21 -0500 |
commit | ba422bd78ec0d78611d0bced54c98d80da20a18d (patch) | |
tree | af86a219f177b1d45a2bcd58cceb87b8889e869a /src/systemtime.h | |
parent | systemtime: Fix includes and check for _POSIX_TIMERS (diff) | |
download | redshift-ng-ba422bd78ec0d78611d0bced54c98d80da20a18d.tar.gz redshift-ng-ba422bd78ec0d78611d0bced54c98d80da20a18d.tar.bz2 redshift-ng-ba422bd78ec0d78611d0bced54c98d80da20a18d.tar.xz |
systemtime: Add function wrapping platform sleep function
Adds systemtime_msleep() which sleeps for a number of milliseconds.
This wraps Sleep() on windows and usleep() on other platforms.
Diffstat (limited to 'src/systemtime.h')
-rw-r--r-- | src/systemtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/systemtime.h b/src/systemtime.h index 0a6a66c..184e41d 100644 --- a/src/systemtime.h +++ b/src/systemtime.h @@ -22,5 +22,6 @@ int systemtime_get_time(double *now); +void systemtime_msleep(unsigned int msecs); #endif /* ! REDSHIFT_SYSTEMTIME_H */ |