-
Notifications
You must be signed in to change notification settings - Fork 3
/
sys.c
31 lines (28 loc) · 868 Bytes
/
sys.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
// Copyright 2010-2020 Nicholas J. Kain <njkain at gmail dot com>
// SPDX-License-Identifier: MIT
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <time.h>
#include "nk/log.h"
#include "ndhc.h"
#include "sys.h"
long long IMPL_curms(const char *parent_function)
{
struct timespec ts;
if (clock_gettime(CLOCK_MONOTONIC, &ts) < 0) {
suicide("%s: (%s) clock_gettime failed: %s\n",
client_config.interface, parent_function, strerror(errno));
}
return ts.tv_sec * 1000LL + ts.tv_nsec / 1000000LL;
}
void setup_signals_subprocess(void)
{
sigset_t mask;
if (sigprocmask(0, 0, &mask) < 0)
suicide("sigprocmask failed\n");
if (sigaddset(&mask, SIGPIPE))
suicide("sigaddset failed\n");
if (sigprocmask(SIG_SETMASK, &mask, (sigset_t *)0) < 0)
suicide("sigprocmask failed\n");
}