From acf66fb3406fb7eb3e8c76cbe073cbe061080a5a Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 30 Jun 2006 11:09:44 +0000 Subject: [PATCH] Log format '%!' prints thread ID --- src/log.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/log.c b/src/log.c index 05a92b3..0689f67 100644 --- a/src/log.c +++ b/src/log.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: log.c,v 1.35 2006-05-07 18:26:25 adam Exp $ + * $Id: log.c,v 1.36 2006-06-30 11:09:44 adam Exp $ */ /** @@ -339,6 +339,9 @@ static void yaz_strftime(char *dst, size_t sz, DWORD tid = GetCurrentThreadId(); #else long tid = 0; +#if YAZ_POSIX_THREADS + tid = pthread_self(); +#endif #endif memcpy(fmt2, fmt, cp-fmt); fmt2[cp-fmt] = '\0'; -- 1.7.10.4