X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=logging%2Flog.c;h=f2fa0cb66373eabaa492ff49e753d50ab86bd893;hb=cd20813f2d221faf229f522cba89b9b028438050;hp=7af09e54ed0d77ee00484b67e3aab9d9b7c7ba10;hpb=994e8fa324cfb0d2eda1e087f9c84de0beba5572;p=deliverable%2Fbabeltrace.git diff --git a/logging/log.c b/logging/log.c index 7af09e54e..f2fa0cb66 100644 --- a/logging/log.c +++ b/logging/log.c @@ -128,11 +128,10 @@ extern unsigned long pthread_getsequence_np(pthread_t *); #else #define BT_LOG_OPTIMIZE_SIZE 0 #endif -/* Size of the log line buffer. The buffer is allocated on stack. It limits - * maximum length of a log line. +/* Size of the log line buffer. The buffer is a globally allocated per thread. */ #ifndef BT_LOG_BUF_SZ - #define BT_LOG_BUF_SZ 512 + #define BT_LOG_BUF_SZ (4 * 4096) #endif /* Default number of bytes in one line of memory output. For large values * BT_LOG_BUF_SZ also must be increased. @@ -289,7 +288,7 @@ extern unsigned long pthread_getsequence_np(pthread_t *); #undef __STRICT_ANSI__ #endif #endif -#include +#include #include #include #include @@ -537,11 +536,10 @@ static void buffer_callback(bt_log_message *msg, char *buf); STATIC_ASSERT(eol_fits_eol_sz, sizeof(BT_LOG_EOL) <= BT_LOG_EOL_SZ); STATIC_ASSERT(eol_sz_greater_than_zero, 0 < BT_LOG_EOL_SZ); STATIC_ASSERT(eol_sz_less_than_buf_sz, BT_LOG_EOL_SZ < BT_LOG_BUF_SZ); -#if !defined(_WIN32) && !defined(_WIN64) - STATIC_ASSERT(buf_sz_less_than_pipe_buf, BT_LOG_BUF_SZ <= PIPE_BUF); -#endif static const char c_hex[] = "0123456789abcdef"; +static char __thread logging_buf[4 * 4096]; + static INSTRUMENTED_CONST unsigned g_buf_sz = BT_LOG_BUF_SZ - BT_LOG_EOL_SZ; static INSTRUMENTED_CONST time_cb g_time_cb = time_callback; static INSTRUMENTED_CONST pid_cb g_pid_cb = pid_callback; @@ -685,6 +683,7 @@ static const bt_log_output out_stderr = {BT_LOG_OUT_STDERR}; BT_LOG_DEFINE_GLOBAL_OUTPUT_LEVEL = 0; #endif +BT_HIDDEN const bt_log_spec _bt_log_stderr_spec = { BT_LOG_GLOBAL_FORMAT, @@ -1262,7 +1261,7 @@ static void _bt_log_write_imp( const int lvl, const char *const tag, const char *const fmt, va_list va) { bt_log_message msg; - char buf[BT_LOG_BUF_SZ]; + char *buf = logging_buf; const unsigned mask = log->output->mask; msg.lvl = lvl; msg.tag = tag;