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/heap.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/heap.c')
-rw-r--r-- | src/vppinfra/heap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vppinfra/heap.c b/src/vppinfra/heap.c index e91dc64f568..b81e1e1339e 100644 --- a/src/vppinfra/heap.c +++ b/src/vppinfra/heap.c @@ -382,7 +382,7 @@ dealloc_elt (void *v, heap_elt_t * e) combine_free_blocks (v, p, n); } -void * +__clib_export void * _heap_alloc (void *v, uword size, uword align, @@ -496,7 +496,7 @@ error: return v; } -void +__clib_export void heap_dealloc (void *v, uword handle) { heap_header_t *h = heap_header (v); @@ -607,7 +607,7 @@ heap_len (void *v, word handle) return heap_elt_size (v, elt_at (h, handle)); } -void * +__clib_export void * _heap_free (void *v) { heap_header_t *h = heap_header (v); |