From owner-freebsd-x11@FreeBSD.ORG Mon Sep 18 11:10:15 2006 Return-Path: X-Original-To: freebsd-x11@freebsd.org Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 025D816A47C for ; Mon, 18 Sep 2006 11:10:14 +0000 (UTC) (envelope-from harikurniawan@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A5143D55 for ; Mon, 18 Sep 2006 11:10:13 +0000 (GMT) (envelope-from harikurniawan@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so2927461nfc for ; Mon, 18 Sep 2006 04:10:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type; b=RpNDIJGv7c1ZhLf7fP7OnA85HseO89a9tPdchBOMHnTDjybVU16EXgHJjKMuGx5cw+QbEk396CC1LMT0+BMGsHOF2E2prJpgIod0uaDf42wGHxVD1h+qbwEgXJePFtJeW2fuDo5kfX7vB/aoLHB9uHlX3cDS0bwHZajV7HpeFsk= Received: by 10.49.8.10 with SMTP id l10mr16780446nfi; Mon, 18 Sep 2006 04:10:11 -0700 (PDT) Received: by 10.49.18.11 with HTTP; Mon, 18 Sep 2006 04:10:11 -0700 (PDT) Message-ID: <4c40c4e70609180410m59af8a2br5ea12c7e3b497d12@mail.gmail.com> Date: Mon, 18 Sep 2006 11:10:11 +0000 From: "Angka H. K." To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-x11@freebsd.org Subject: libpthread prevent glxgears to run X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Sep 2006 11:10:15 -0000 This code : if (m->m_flags & MUTEX_FLAGS_PRIVATE) PANIC("Recurse on a private mutex."); at file "/usr/src/lib/libpthread/thread/thr_mutex.c" line 1002 prevent glxgears to run with the following error : Fatal error 'Recurse on a private mutex.' at line 1003 in file /usr/src/lib/libpthread/thread/thr_mutex.c (errno = 35) If the line is removed the glxgears is running well. Which could be wrong; The glgears code or the libptrhead code ? And what the use of that line ? Regards,