-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime.c
80 lines (64 loc) · 1.49 KB
/
time.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* Melon Software Framework is Copyright (C) 2021 - 2025 Knot126
*
* =============================================================================
*
* Time Functions
*/
#include <time.h>
#include <inttypes.h>
#ifdef __linux__
#include <unistd.h>
#endif
#include "time.h"
static struct timespec st;
void DgInitTime(void) {
timespec_get(&st, TIME_UTC);
}
double DgTime(void) {
/**
* Returns the time in seconds since the program started.
*
* @todo Should t.tv_nsec be (t.tv_nsec - st.tv_nsec) instead? Bug?
*
* @return Time since DgInitTime was called
*/
struct timespec t;
timespec_get(&t, TIME_UTC);
return (double) (t.tv_sec - st.tv_sec) + (t.tv_nsec / 1000000000.0);
}
double DgRealTime(void) {
/**
* Returns the current real time in seconds
*
* @return Current time since 1970-01-01T00:00:00+00:00 in seconds as a double
*/
struct timespec t;
timespec_get(&t, TIME_UTC);
return (double) (t.tv_sec) + (t.tv_nsec / 1000000000.0);
}
uint32_t DgNsecTime(void) {
/**
* Get the current nanosecond part of the time.
*
* @return Nanosecond part of the current real time.
*
* @deprecated Not very useful, some RNGs use this but they probably shouldn't.
*/
struct timespec t;
timespec_get(&t, TIME_UTC);
return t.tv_nsec;
}
#ifdef __linux__
void DgSleep(double length) {
/**
* Sleep the thread for `length` seconds.
*
* @param length Length of the sleep
*/
if (length < 0.0) {
return;
}
usleep((useconds_t) (1000000 * length));
}
#endif