This website requires JavaScript.
Explore
Help
Sign In
d
/
numam-dpdk
Watch
1
Star
0
Fork
0
You've already forked numam-dpdk
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
numam-dpdk
/
lib
/
librte_stack
/
version.map
10 lines
90 B
Plaintext
Raw
Normal View
History
Unescape
Escape
stack: promote library as stable The stack library was first released in 19.05, and its interfaces have been stable since their initial introduction. This commit promotes the full interface to stable, starting with the 20.11 major version. Signed-off-by: Gage Eads <gage.eads@intel.com> Acked-by: David Marchand <david.marchand@redhat.com>
2020-09-30 16:39:54 -05:00
DPDK_21 {
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-03 18:20:13 -05:00
global:
rte_stack_create;
rte_stack_free;
rte_stack_lookup;
local: *;
};
Reference in New Issue
Copy Permalink