mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Added CLOCK_MONOTONIC timestamp and thread id to Dprintf
This commit is contained in:
parent
6a47e20435
commit
6389c5fd90
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
||||
VDR Plugin 'streamdev' Revision History
|
||||
---------------------------------------
|
||||
|
||||
- Added CLOCK_MONOTONIC timestamp and thread id to Dprintf
|
||||
- Silenced warning (thanks to Rolf Ahrenberg)
|
||||
- Updated Finnish translation (thanks to Rolf Ahrenberg)
|
||||
- Replaced server-side suspend modes with priority based precedence handling
|
||||
|
8
common.h
8
common.h
@ -18,7 +18,13 @@
|
||||
|
||||
#ifdef DEBUG
|
||||
#include <stdio.h>
|
||||
# define Dprintf(x...) fprintf(stderr, x)
|
||||
#include <time.h>
|
||||
#define Dprintf(fmt, x...) {\
|
||||
struct timespec ts;\
|
||||
clock_gettime(CLOCK_MONOTONIC, &ts);\
|
||||
fprintf(stderr, "%ld.%.3ld [%d] "fmt,\
|
||||
ts.tv_sec, ts.tv_nsec / 1000000, cThread::ThreadId(), ##x);\
|
||||
}
|
||||
#else
|
||||
#define Dprintf(x...)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user