From: Kern Sibbald Date: Mon, 6 Jul 2009 13:30:11 +0000 (+0000) Subject: Remove non-portable reference to pthread mutex X-Git-Tag: Release-3.0.2~102 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=04ddd7e884501e0f884d0d9680c16725215068ee;p=bacula%2Fbacula Remove non-portable reference to pthread mutex git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8964 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/sql.c b/bacula/src/cats/sql.c index bbee8561b8..324d01760c 100644 --- a/bacula/src/cats/sql.c +++ b/bacula/src/cats/sql.c @@ -758,9 +758,6 @@ void _dbg_print_db(JCR *jcr, FILE *fp) fprintf(fp, "\tcmd=\"%s\" changes=%i\n", NPRTB(mdb->cmd), mdb->changes); if (mdb->lock.valid == RWLOCK_VALID) { fprintf(fp, "\tRWLOCK=%p w_active=%i w_wait=%i\n", &mdb->lock, mdb->lock.w_active, mdb->lock.w_wait); -#ifndef HAVE_WIN32 - fprintf(fp, "\t\tthreadid=0x%x mutex=%p\n", (int)mdb->lock.writer_id, &mdb->lock.mutex); -#endif } }