From 65e9fd9dd8df747541d2d3ee44fc88b3c7b90c90 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Wed, 17 Jun 2015 13:37:27 -0700 Subject: [PATCH] px4_log: minor fixes to logging header file Signed-off-by: Mark Charlebois --- src/platforms/px4_log.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/platforms/px4_log.h b/src/platforms/px4_log.h index 57dbf3e503..d18026b07e 100644 --- a/src/platforms/px4_log.h +++ b/src/platforms/px4_log.h @@ -32,7 +32,7 @@ ****************************************************************************/ /** - * @file px4_log_os_impl.h + * @file px4_log.h * Platform dependant logging/debug implementation */ @@ -46,7 +46,6 @@ __BEGIN_DECLS __EXPORT extern uint64_t hrt_absolute_time(void); -//__EXPORT extern unsigned long pthread_self(); #define _PX4_LOG_LEVEL_ALWAYS 0 #define _PX4_LOG_LEVEL_PANIC 1 @@ -54,8 +53,8 @@ __EXPORT extern uint64_t hrt_absolute_time(void); #define _PX4_LOG_LEVEL_WARN 3 #define _PX4_LOG_LEVEL_DEBUG 4 -extern const char *__px4_log_level_str[5]; -extern unsigned int __px4_log_level_current; +__EXPORT extern const char *__px4_log_level_str[5]; +__EXPORT extern unsigned int __px4_log_level_current; #define PX4_LOG_LEVEL_AT_RUN_TIME _PX4_LOG_LEVEL_WARN