Created
December 5, 2016 17:33
-
-
Save ebarcikowski/269a072725046e67d62f85889f0b1453 to your computer and use it in GitHub Desktop.
great code snippet. Stolen from http://stackoverflow.com/questions/1205722/how-do-i-get-monotonic-time-durations-in-python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
__all__ = ["monotonic_time"] | |
import ctypes, os | |
CLOCK_MONOTONIC_RAW = 4 # see <linux/time.h> | |
class timespec(ctypes.Structure): | |
_fields_ = [ | |
('tv_sec', ctypes.c_long), | |
('tv_nsec', ctypes.c_long) | |
] | |
librt = ctypes.CDLL('librt.so.1', use_errno=True) | |
clock_gettime = librt.clock_gettime | |
clock_gettime.argtypes = [ctypes.c_int, ctypes.POINTER(timespec)] | |
def monotonic_time(): | |
t = timespec() | |
if clock_gettime(CLOCK_MONOTONIC_RAW , ctypes.pointer(t)) != 0: | |
errno_ = ctypes.get_errno() | |
raise OSError(errno_, os.strerror(errno_)) | |
return t.tv_sec + t.tv_nsec * 1e-9 | |
if __name__ == "__main__": | |
print monotonic_time() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment