mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Modified logging so that even on NPTL systems each line in the log file shows the individual thread's pid
This commit is contained in:
15
tools.c
15
tools.c
@@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: tools.c 1.110 2006/01/15 14:31:45 kls Exp $
|
||||
* $Id: tools.c 1.111 2006/01/15 16:42:37 kls Exp $
|
||||
*/
|
||||
|
||||
#include "tools.h"
|
||||
@@ -26,9 +26,22 @@ extern "C" {
|
||||
#include <unistd.h>
|
||||
#include <utime.h>
|
||||
#include "i18n.h"
|
||||
#include "thread.h"
|
||||
|
||||
int SysLogLevel = 3;
|
||||
|
||||
#define MAXSYSLOGBUF 256
|
||||
|
||||
void syslog_with_tid(int priority, const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
char fmt[MAXSYSLOGBUF];
|
||||
snprintf(fmt, sizeof(fmt), "[%d] %s", cThread::ThreadId(), format);
|
||||
va_start(ap, format);
|
||||
vsyslog(priority, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
int BCD2INT(int x)
|
||||
{
|
||||
return ((1000000 * BCDCHARTOINT((x >> 24) & 0xFF)) +
|
||||
|
Reference in New Issue
Block a user