Go to the documentation of this file.
39 #ifndef _RTE_VERSION_H_
40 #define _RTE_VERSION_H_
54 #define RTE_VER_PREFIX "DPDK"
59 #define RTE_VER_YEAR 17
64 #define RTE_VER_MONTH 5
69 #define RTE_VER_MINOR 2
74 #define RTE_VER_SUFFIX ""
81 #define RTE_VER_RELEASE 16
86 #define RTE_VERSION_NUM(a,b,c,d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
91 #define RTE_VERSION RTE_VERSION_NUM( \
102 static inline const char *
105 static char version[32];
109 snprintf(version,
sizeof(version),
"%s %d.%02d.%d",
115 snprintf(version,
sizeof(version),
"%s %d.%02d.%d%s%d",