From owner-freebsd-ports@freebsd.org Sun Oct 4 22:45:57 2015 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEF0AA10BBA for ; Sun, 4 Oct 2015 22:45:57 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from taro.utanet.at (taro.utanet.at [IPv6:2001:938:1337:25::25:45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EF4610DB for ; Sun, 4 Oct 2015 22:45:57 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=Z+9l6FRisVYjMtGA7xIVVLji1a0Do5+PxV+Zc3YtrkI=; b=wpMwehjvZA/X63NPQtopb1UIS6Y2NS+LCIaPMfI8544tXVH3yTXQxFT2zi5JeGnLiM9Bcrw+QcnphbsfEURZQM/8r+1vOlrFOGv8oH01ICWYCLqr9VH/x4Svc/0SJ1OMpIu03oXJlpiaURjGvhUMAkbrzrrkCgEuoyqURMJUa2M=; Received: from pam.xoc.tele2net.at ([213.90.36.6]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1Zis2T-0005JG-QW for freebsd-ports@freebsd.org; Mon, 05 Oct 2015 00:45:53 +0200 Received: from 62-47-172-235.adsl.highway.telekom.at ([62.47.172.235] helo=[10.0.0.93]) by pam.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1Zis2T-0002gh-Ob for freebsd-ports@freebsd.org; Mon, 05 Oct 2015 00:45:53 +0200 To: freebsd-ports@freebsd.org References: <561190B0.8090603@ttmath.org> Subject: Re: glib update From: Walter Schwarzenfeld Message-ID: <5611AC1A.2040309@utanet.at> Date: Mon, 5 Oct 2015 00:45:46 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <561190B0.8090603@ttmath.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Oct 2015 22:45:57 -0000 Hallo !! You can revert the disabling of kqueue. There is PR on https://bugzilla.gnome.org/show_bug.cgi?id=753378. The had another solution: "commenting out that mutex in gio/gunionvolumemonitor.c and it seem to not hang any more" 581 _g_mount_get_for_mount_path (const gchar *mount_path, 582 GCancellable *cancellable) 583 { 593 if (klass->get_mount_for_mount_path) 594 { 595 // g_rec_mutex_lock (&the_volume_monitor_mutex); 596 mount = klass->get_mount_for_mount_path (mount_path, cancellable); 597 // g_rec_mutex_unlock (&the_volume_monitor_mutex); 598 }