Go to the documentation of this file.
10 #ifndef _RTE_VERSION_H_
11 #define _RTE_VERSION_H_
25 #define RTE_VER_PREFIX "DPDK"
30 #define RTE_VER_YEAR 18
35 #define RTE_VER_MONTH 05
40 #define RTE_VER_MINOR 1
45 #define RTE_VER_SUFFIX ""
52 #define RTE_VER_RELEASE 16
57 #define RTE_VERSION_NUM(a,b,c,d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
62 #define RTE_VERSION RTE_VERSION_NUM( \
73 static inline const char *
76 static char version[32];
80 snprintf(version,
sizeof(version),
"%s %d.%02d.%d",
86 snprintf(version,
sizeof(version),
"%s %d.%02d.%d%s%d",