eal: add device event monitor framework
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_dev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #include <rte_log.h>
6 #include <rte_compat.h>
7 #include <rte_dev.h>
8
9
10 int __rte_experimental
11 rte_dev_event_monitor_start(void)
12 {
13         /* TODO: start uevent monitor for linux */
14         return 0;
15 }
16
17 int __rte_experimental
18 rte_dev_event_monitor_stop(void)
19 {
20         /* TODO: stop uevent monitor for linux */
21         return 0;
22 }