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