From: Adam Dickmeiss Date: Fri, 30 Jun 2006 11:09:44 +0000 (+0000) Subject: Log format '%!' prints thread ID X-Git-Tag: YAZ.2.1.26~53 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=acf66fb3406fb7eb3e8c76cbe073cbe061080a5a Log format '%!' prints thread ID --- 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';