2022-02-07 06:35:29 +05:30
|
|
|
// Copyright 2010-2020 Nicholas J. Kain <njkain at gmail dot com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
2010-12-24 20:17:09 +05:30
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2014-04-16 06:25:13 +05:30
|
|
|
#include <signal.h>
|
2020-10-20 15:24:00 +05:30
|
|
|
#include <time.h>
|
2014-03-31 02:32:48 +05:30
|
|
|
#include "nk/log.h"
|
2014-04-16 06:25:13 +05:30
|
|
|
#include "ndhc.h"
|
2014-03-13 02:21:10 +05:30
|
|
|
#include "sys.h"
|
2010-12-24 20:17:09 +05:30
|
|
|
|
2017-02-24 19:21:36 +05:30
|
|
|
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",
|
|
|
|
client_config.interface, parent_function, strerror(errno));
|
|
|
|
}
|
|
|
|
return ts.tv_sec * 1000LL + ts.tv_nsec / 1000000LL;
|
|
|
|
}
|
|
|
|
|
2020-10-20 13:53:55 +05:30
|
|
|
void setup_signals_subprocess(void)
|
2014-04-16 06:25:13 +05:30
|
|
|
{
|
|
|
|
sigset_t mask;
|
2020-10-20 13:53:55 +05:30
|
|
|
if (sigprocmask(0, 0, &mask) < 0)
|
|
|
|
suicide("sigprocmask failed");
|
|
|
|
if (sigaddset(&mask, SIGPIPE))
|
|
|
|
suicide("sigaddset failed");
|
|
|
|
if (sigprocmask(SIG_SETMASK, &mask, (sigset_t *)0) < 0)
|
2014-04-16 06:25:13 +05:30
|
|
|
suicide("sigprocmask failed");
|
|
|
|
}
|
|
|
|
|