From aa8117e9e406cf270273cafd6c2a463527552cb5 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Wed, 27 Jan 2016 13:12:59 -0800 Subject: [PATCH] Removed stubs now resolved in adsp static image Signed-off-by: Mark Charlebois --- .../qurt/px4_layer/px4_qurt_impl.cpp | 150 ------------------ 1 file changed, 150 deletions(-) diff --git a/src/platforms/qurt/px4_layer/px4_qurt_impl.cpp b/src/platforms/qurt/px4_layer/px4_qurt_impl.cpp index 4f1c8cd211..1ffc685182 100644 --- a/src/platforms/qurt/px4_layer/px4_qurt_impl.cpp +++ b/src/platforms/qurt/px4_layer/px4_qurt_impl.cpp @@ -165,7 +165,6 @@ static void block_indefinite(void) } } - int fprintf(FILE *stream, const char *format, ...) { PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); @@ -177,152 +176,3 @@ int fputc(int c, FILE *stream) { return c; } - -FILE _Stdin; -FILE _Stdout; -FILE _Stderr; - -static void block_indefinite(void) -{ - for (;;) { - volatile int x = 0; - ++x; - } -} - -int ungetc(int c, FILE *stream) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -int fgetc(FILE *stream) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -int fseek(FILE *stream, long offset, int whence) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -int fgetpos(FILE *stream, fpos_t *pos) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} -int fsetpos(FILE *stream, const fpos_t *pos) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -int setvbuf(FILE *stream, char *buf, int mode, size_t size) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -#include - -wint_t fputwc(wchar_t wc, FILE *stream) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -wint_t ungetwc(wint_t wc, FILE *stream) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -wint_t fgetwc(FILE *stream) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -#include - -size_t _Getmbcurmax() -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return 2; -} - -#include - -_Ctype_t _Getptolower(void) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return nullptr; -} - -_Ctype_t _Getptoupper(void) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return nullptr; -} - -#include - -_Statab *_Getpmbstate(void) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return nullptr; -} - -_Statab *_Getpwcstate(void) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return nullptr; -} - -int _Mbtowcx(wchar_t *, const char *, size_t, mbstate_t *, _Statab *) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); - return -1; -} - -int _Wctombx(char *, wchar_t, mbstate_t *, _Statab *, _Statab *) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - return -1; -} - -void _Locksyslock(int x) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); -} - -void _Unlocksyslock(int x) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); -} - -void _Atexit(void (*)(void)) -{ - PX4_ERR("Error: Calling unresolved symbol stub[%s]", __FUNCTION__); - block_indefinite(); -} -