doc: add Meson coding style to contributors guide
[dpdk.git] / lib / librte_stack / rte_stack_std.h
index 5dc9409..ae28add 100644 (file)
@@ -19,7 +19,7 @@
  * @return
  *   Actual number of objects pushed (either 0 or *n*).
  */
-static __rte_always_inline unsigned int __rte_experimental
+static __rte_always_inline unsigned int
 __rte_stack_std_push(struct rte_stack *s, void * const *obj_table,
                     unsigned int n)
 {
@@ -58,7 +58,7 @@ __rte_stack_std_push(struct rte_stack *s, void * const *obj_table,
  * @return
  *   Actual number of objects popped (either 0 or *n*).
  */
-static __rte_always_inline unsigned int __rte_experimental
+static __rte_always_inline unsigned int
 __rte_stack_std_pop(struct rte_stack *s, void **obj_table, unsigned int n)
 {
        struct rte_stack_std *stack = &s->stack_std;
@@ -92,7 +92,7 @@ __rte_stack_std_pop(struct rte_stack *s, void **obj_table, unsigned int n)
  * @return
  *   The number of used entries in the stack.
  */
-static __rte_always_inline unsigned int __rte_experimental
+static __rte_always_inline unsigned int
 __rte_stack_std_count(struct rte_stack *s)
 {
        return (unsigned int)s->stack_std.len;