9 #ifndef ALLOW_EXPERIMENTAL_API
11 #define __rte_experimental \
12 __attribute__((deprecated("Symbol is not yet part of stable ABI"), \
13 section(".text.experimental")))
17 #define __rte_experimental \
18 __attribute__((section(".text.experimental")))
22 #ifndef ALLOW_INTERNAL_API
24 #define __rte_internal \
25 __attribute__((error("Symbol is not public ABI"), \
26 section(".text.internal")))
30 #define __rte_internal \
31 __attribute__((section(".text.internal")))