aboutsummaryrefslogtreecommitdiff
path: root/src/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils.cpp')
-rw-r--r--src/Utils.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp
index 3032f22..c73932b 100644
--- a/src/Utils.cpp
+++ b/src/Utils.cpp
@@ -126,13 +126,4 @@ namespace QuickMedia {
strftime(time_str, sizeof(time_str) - 1, "%Y %b %d, %a %H:%M", &time_tm);
return time_str;
}
-
- int64_t get_unix_time_monotonic() {
- struct timespec t;
- if(clock_gettime(CLOCK_MONOTONIC, &t) == -1) {
- fprintf(stderr, "This kernel version doesn't support CLOCK_MONOTONIC\n");
- abort();
- }
- return t.tv_sec;
- }
} \ No newline at end of file