diff options
author | Damjan Marion <damarion@cisco.com> | 2020-10-17 13:32:25 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-10-17 21:01:42 +0000 |
commit | dae1c7ed38e9f7a86e66f3674de62778cc981331 (patch) | |
tree | c84fd7a94e1249233d5533e15d54bef52582ee4c /src/vppinfra/bihash_all_vector.c | |
parent | ada5bbf3303e8fb6f53ff39e6074ae820457224d (diff) |
vppinfra: explicitly export symbols
Type: improvement
Change-Id: I57a9f85f7df1fc48656b72592349f4c544302f77
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/bihash_all_vector.c')
-rw-r--r-- | src/vppinfra/bihash_all_vector.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vppinfra/bihash_all_vector.c b/src/vppinfra/bihash_all_vector.c index 35355b54062..04c13745402 100644 --- a/src/vppinfra/bihash_all_vector.c +++ b/src/vppinfra/bihash_all_vector.c @@ -16,10 +16,10 @@ #include <vppinfra/mem.h> /* Vector of all bihashes */ -void **clib_all_bihashes; +__clib_export void **clib_all_bihashes; static clib_mem_heap_t *clib_all_bihash_heap; -clib_mem_heap_t * +__clib_export clib_mem_heap_t * clib_all_bihash_set_heap (void) { if (PREDICT_FALSE (clib_all_bihash_heap == 0)) @@ -32,7 +32,7 @@ clib_all_bihash_set_heap (void) * Leave it to Beaver to change the size of a bihash * by making a clone in a stack local and then copying it... */ -void +__clib_export void clib_bihash_copied (void *dst, void *src) { int i; |