xref: /dpdk/lib/eal/windows/eal_dev.c (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2021 Microsoft Corporation
3  */
4 
5 #include <rte_dev.h>
6 
7 int
8 rte_dev_event_monitor_start(void)
9 {
10 	RTE_LOG(ERR, EAL, "Device event is not supported for Windows\n");
11 	return -1;
12 }
13 
14 int
15 rte_dev_event_monitor_stop(void)
16 {
17 	RTE_LOG(ERR, EAL, "Device event is not supported for Windows\n");
18 	return -1;
19 }
20 
21 int
22 rte_dev_hotplug_handle_enable(void)
23 {
24 	RTE_LOG(ERR, EAL, "Device event is not supported for Windows\n");
25 	return -1;
26 }
27 
28 int
29 rte_dev_hotplug_handle_disable(void)
30 {
31 	RTE_LOG(ERR, EAL, "Device event is not supported for Windows\n");
32 	return -1;
33 }
34