-
Notifications
You must be signed in to change notification settings - Fork 15
/
misc.c
51 lines (47 loc) · 1.12 KB
/
misc.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
#include "misc.h"
#include <time.h>
#include <stdio.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
/**
* return timestamp in milliseconds
*
* @return current system time in milliseconds
*/
uint64_t millisec() {
struct timespec spec;
clock_gettime(CLOCK_REALTIME, &spec);
return spec.tv_sec * 1000 + spec.tv_nsec / 1000000;
}
/**
* print to stdout, prefix with <level> for prety systemd log level coloring
*
* @param level log levek
* @param fmt format string for printf
* @param ... args for printf
*/
void print(log_level_t level, char* fmt, ...) {
printf("<%d>", level);
va_list arglist;
va_start(arglist, fmt);
vprintf(fmt, arglist);
va_end(arglist);
puts("");
fflush(stdout);
}
/**
* like print() but appends errno and strerror to the output
*/
void print_e(log_level_t level, char* fmt, ...) {
fprintf(stderr, "<%d>", level);
va_list arglist;
va_start(arglist, fmt);
vfprintf(stderr, fmt, arglist);
va_end(arglist);
if (errno) {
fprintf(stderr, ": (%d) %s\n", errno, strerror(errno));
} else {
fprintf(stderr, "\n");
}
}