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 __has_attribute 24 #define __has_attribute(x) 0 27 #if !defined ALLOW_INTERNAL_API && __has_attribute(error) 29 #define __rte_internal \ 30 __attribute__((error("Symbol is not public ABI"), \ 31 section(".text.internal"))) 33 #elif !defined ALLOW_INTERNAL_API && __has_attribute(diagnose_if) 35 #define __rte_internal \ 36 __attribute__((diagnose_if(1, "Symbol is not public ABI", "error"), \ 37 section(".text.internal"))) 41 #define __rte_internal \ 42 __attribute__((section(".text.internal")))