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/unix-misc.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/unix-misc.c')
-rw-r--r-- | src/vppinfra/unix-misc.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/vppinfra/unix-misc.c b/src/vppinfra/unix-misc.c index 54016ed74f4..7c276b0ceeb 100644 --- a/src/vppinfra/unix-misc.c +++ b/src/vppinfra/unix-misc.c @@ -45,8 +45,8 @@ #include <fcntl.h> #include <stdio.h> /* for sprintf */ -__thread uword __os_thread_index = 0; -__thread uword __os_numa_index = 0; +__clib_export __thread uword __os_thread_index = 0; +__clib_export __thread uword __os_numa_index = 0; clib_error_t * clib_file_n_bytes (char *file, uword * result) @@ -108,7 +108,7 @@ done: return error; } -clib_error_t * +__clib_export clib_error_t * clib_file_contents (char *file, u8 ** result) { uword n_bytes; @@ -215,15 +215,13 @@ os_puts (u8 * string, uword string_length, uword is_error) ; } -void os_out_of_memory (void) __attribute__ ((weak)); -void +__clib_export __clib_weak void os_out_of_memory (void) { os_panic (); } -uword os_get_nthreads (void) __attribute__ ((weak)); -uword +__clib_export __clib_weak uword os_get_nthreads (void) { return 1; |