[4/5] eal: export needed functions for mempool

Message ID 20200531124151.16848-5-fady@mellanox.com (mailing list archive)
State Superseded, archived
Headers
Series build mempool on Windows |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail apply issues

Commit Message

Fady Bader May 31, 2020, 12:41 p.m. UTC
  __rte_trace_mem_per_thread_alloc is used by mempool lib but not exported on
Windows.
the function was exported.

Signed-off-by: Fady Bader <fady@mellanox.com>
---
 lib/librte_eal/rte_eal_version.map | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map
index 8937bdfea..361d4808f 100644
--- a/lib/librte_eal/rte_eal_version.map
+++ b/lib/librte_eal/rte_eal_version.map
@@ -393,4 +393,5 @@  EXPERIMENTAL {
 	rte_mem_map;
 	rte_mem_unmap;
 	__emutls_v.per_lcore__rte_errno;
+	__rte_trace_mem_per_thread_alloc;
 };