File rte_os.h did not previously have a generic version to generate documentation from, but its OS-specific version was installed. Since it is now verified that documentation is generated for all public headers, add a generic stub containing description of this file.
Signed-off-by: Marat Khalili <[email protected]> --- lib/eal/include/generic/rte_os.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/eal/include/generic/rte_os.h diff --git a/lib/eal/include/generic/rte_os.h b/lib/eal/include/generic/rte_os.h new file mode 100644 index 000000000000..aa96321aefc4 --- /dev/null +++ b/lib/eal/include/generic/rte_os.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2010-2019 Intel Corporation + */ + +#ifndef _RTE_OS_H_ +#define _RTE_OS_H_ + +/** + * This header should contain any definition + * which is not supported natively or named differently in the local OS. + */ + +#endif /* _RTE_OS_H_ */ -- 2.43.0

