aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_eal/bsdapp/eal/eal_alarm_private.h
blob: 65c7115184b727a033bfe53e76a17b6fcd7d5103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2018 Intel Corporation
 */

#ifndef EAL_ALARM_PRIVATE_H
#define EAL_ALARM_PRIVATE_H

#include <inttypes.h>

/*
 * FreeBSD needs a back-channel communication mechanism between interrupt and
 * alarm thread, because on FreeBSD, timer period is set up inside the interrupt
 * API and not inside alarm API like on Linux.
 */

int
eal_alarm_get_timeout_ns(uint64_t *val);

#endif // EAL_ALARM_PRIVATE_H