X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Funix-misc.c;h=5559a2392fe6725084925d27aa31756a7f212a4d;hb=21b4e337b67c8de9f1b7f59a86f1ec4e5f02372b;hp=54016ed74f4dc4c1c3330cab3da83dc930db410c;hpb=a690fdbfe179e0ea65818c03b52535bf9210efd0;p=vpp.git diff --git a/src/vppinfra/unix-misc.c b/src/vppinfra/unix-misc.c index 54016ed74f4..5559a2392fe 100644 --- a/src/vppinfra/unix-misc.c +++ b/src/vppinfra/unix-misc.c @@ -45,8 +45,8 @@ #include #include /* 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; @@ -171,7 +171,7 @@ unix_proc_file_contents (char *file, u8 ** result) void os_panic (void) __attribute__ ((weak)); -void +__clib_export void os_panic (void) { abort (); @@ -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;