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)10rte_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)17rte_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)24rte_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)31rte_dev_hotplug_handle_disable(void) 32 { 33 EAL_LOG(ERR, "Device event is not supported for Windows"); 34 return -1; 35 } 36