Go to the documentation of this file.
39 #ifndef _RTE_VERSION_H_
40 #define _RTE_VERSION_H_
53 #define RTE_VER_PREFIX "DPDK"
58 #define RTE_VER_YEAR 16
63 #define RTE_VER_MONTH 4
68 #define RTE_VER_MINOR 0
73 #define RTE_VER_SUFFIX ""
80 #define RTE_VER_RELEASE 16
85 #define RTE_VERSION_NUM(a,b,c,d) ((a) << 24 | (b) << 16 | (c) << 8 | (d))
90 #define RTE_VERSION RTE_VERSION_NUM( \
101 static inline const char *
104 static char version[32];
108 snprintf(version,
sizeof(version),
"%s %d.%02d.%d",
114 snprintf(version,
sizeof(version),
"%s %d.%02d.%d%s%d",