eal: fix comment of OS-specific header files

The same comment is on top of each rte_os.h file.
It is reworded to remove the mention of "future releases".

Fixes: 428eb983f5f7 ("eal: add OS specific header file")
Cc: stable@dpdk.org

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Thomas Monjalon 2021-02-25 00:16:22 +01:00
parent 4eefb20faa
commit bfb42c3777
3 changed files with 6 additions and 9 deletions
lib/librte_eal
freebsd/include
linux/include
windows/include

@ -6,9 +6,8 @@
#define _RTE_OS_H_ #define _RTE_OS_H_
/** /**
* This is header should contain any function/macro definition * This header should contain any definition
* which are not supported natively or named differently in the * which is not supported natively or named differently in FreeBSD.
* freebsd OS. Functions will be added in future releases.
*/ */
#include <pthread_np.h> #include <pthread_np.h>

@ -6,9 +6,8 @@
#define _RTE_OS_H_ #define _RTE_OS_H_
/** /**
* This is header should contain any function/macro definition * This header should contain any definition
* which are not supported natively or named differently in the * which is not supported natively or named differently in Linux.
* linux OS. Functions will be added in future releases.
*/ */
#include <sched.h> #include <sched.h>

@ -6,9 +6,8 @@
#define _RTE_OS_H_ #define _RTE_OS_H_
/** /**
* This is header should contain any function/macro definition * This header should contain any definition
* which are not supported natively or named differently in the * which is not supported natively or named differently in Windows.
* Windows OS. It must not include Windows-specific headers.
*/ */
#include <stdarg.h> #include <stdarg.h>