numam-dpdk/lib/librte_stack
Gage Eads 05d3b5283c stack: introduce stack library
The rte_stack library provides an API for configuration and use of a
bounded stack of pointers. Push and pop operations are MT-safe, allowing
concurrent access, and the interface supports pushing and popping multiple
pointers at a time.

The library's interface is modeled after another DPDK data structure,
rte_ring, and its lock-based implementation is derived from the stack
mempool handler. An upcoming commit will migrate the stack mempool handler
to rte_stack.

Signed-off-by: Gage Eads <gage.eads@intel.com>
Reviewed-by: Olivier Matz <olivier.matz@6wind.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
2019-04-04 22:06:16 +02:00
..
Makefile stack: introduce stack library 2019-04-04 22:06:16 +02:00
meson.build stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack_pvt.h stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack_std.c stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack_std.h stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack_version.map stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack.c stack: introduce stack library 2019-04-04 22:06:16 +02:00
rte_stack.h stack: introduce stack library 2019-04-04 22:06:16 +02:00