X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Finclude%2Fgeneric%2Frte_pause.h;h=668ee4a18453e84e38eb094ab45c04de02f656b1;hb=8d63961fc7137cab823f85a50ee82779792f21e4;hp=7422785f1a5b7ba0bac72150973c8303807f41e8;hpb=9c1e0dc39a03c95447095241eaf3764d2e0dd003;p=dpdk.git diff --git a/lib/librte_eal/include/generic/rte_pause.h b/lib/librte_eal/include/generic/rte_pause.h index 7422785f1a..668ee4a184 100644 --- a/lib/librte_eal/include/generic/rte_pause.h +++ b/lib/librte_eal/include/generic/rte_pause.h @@ -28,9 +28,6 @@ static inline void rte_pause(void); /** - * @warning - * @b EXPERIMENTAL: this API may change, or be removed, without prior notice - * * Wait for *addr to be updated with a 16-bit expected value, with a relaxed * memory ordering model meaning the loads around this API can be reordered. * @@ -44,15 +41,11 @@ static inline void rte_pause(void); * C++11 memory orders with the same names, see the C++11 standard or * the GCC wiki on atomic synchronization for detailed definition. */ -__rte_experimental static __rte_always_inline void rte_wait_until_equal_16(volatile uint16_t *addr, uint16_t expected, int memorder); /** - * @warning - * @b EXPERIMENTAL: this API may change, or be removed, without prior notice - * * Wait for *addr to be updated with a 32-bit expected value, with a relaxed * memory ordering model meaning the loads around this API can be reordered. * @@ -66,15 +59,11 @@ rte_wait_until_equal_16(volatile uint16_t *addr, uint16_t expected, * C++11 memory orders with the same names, see the C++11 standard or * the GCC wiki on atomic synchronization for detailed definition. */ -__rte_experimental static __rte_always_inline void rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected, int memorder); /** - * @warning - * @b EXPERIMENTAL: this API may change, or be removed, without prior notice - * * Wait for *addr to be updated with a 64-bit expected value, with a relaxed * memory ordering model meaning the loads around this API can be reordered. * @@ -88,7 +77,6 @@ rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected, * C++11 memory orders with the same names, see the C++11 standard or * the GCC wiki on atomic synchronization for detailed definition. */ -__rte_experimental static __rte_always_inline void rte_wait_until_equal_64(volatile uint64_t *addr, uint64_t expected, int memorder);