aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_eal/bsdapp/eal/eal_dev.c
blob: 255d611e36685803c244d0900c3911fa60aafb77 (plain)
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
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2018 Intel Corporation
 */

#include <rte_log.h>
#include <rte_compat.h>
#include <rte_dev.h>

int __rte_experimental
rte_dev_event_monitor_start(void)
{
	RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
	return -1;
}

int __rte_experimental
rte_dev_event_monitor_stop(void)
{
	RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
	return -1;
}

int __rte_experimental
rte_dev_hotplug_handle_enable(void)
{
	RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
	return -1;
}

int __rte_experimental
rte_dev_hotplug_handle_disable(void)
{
	RTE_LOG(ERR, EAL, "Device event is not supported for FreeBSD\n");
	return -1;
}