From owner-freebsd-chromium@FreeBSD.ORG Mon Feb 21 22:42:53 2011 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 303B6106564A; Mon, 21 Feb 2011 22:42:53 +0000 (UTC) (envelope-from geo.liaskos@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id CD9658FC0A; Mon, 21 Feb 2011 22:42:52 +0000 (UTC) Received: by gxk7 with SMTP id 7so764255gxk.13 for ; Mon, 21 Feb 2011 14:42:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=at6U8PqvFKEv7CN7+NDLMzdJbCVVVLGX5fi8XnuHQSA=; b=LWWfGuLE3nNp7mZn2VZzoOlZU4sk+xtJUGQkVXWLD5qjf9j0pIb8sDHVw9PGzEE01a /mQB/LQqwvr5vnB1GDwAYsJBIexMvVukfJ1of5c90dglkvxvkmE9msXo6swGxqTMwIBz ANs7KXUJy9Q4NoxrL54SJxhAyFkE2jTmURMg0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=uYlcEYpB2yiNa8wHwkqe5XS/r/b7M0aHuOw/yjMaaUNQLDbhWrRS+EuzCuue9eg4A3 mDY3e0/egStmKTEj7u8TKrINXR8zjmmm05uFgJdXRl3kUgW1GXI8XOt6ooiVXAWFn5QX jQoLjP0yQMLmXEnephdaP2RvFFdhMr1wKCdlA= MIME-Version: 1.0 Received: by 10.100.178.5 with SMTP id a5mr857936anf.184.1298326372585; Mon, 21 Feb 2011 14:12:52 -0800 (PST) Received: by 10.101.135.19 with HTTP; Mon, 21 Feb 2011 14:12:52 -0800 (PST) In-Reply-To: <4D62DF5D.3060702@freebsd.org> References: <4D62DF5D.3060702@freebsd.org> Date: Tue, 22 Feb 2011 00:12:52 +0200 Message-ID: From: George Liaskos To: Rene Ladan Content-Type: text/plain; charset=UTF-8 Cc: freebsd-chromium@freebsd.org Subject: Re: chromium 9 can't open any page X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2011 22:42:53 -0000 Is there a way to debug chrome in gdb? I believe that the rendering thread for some reason time outs on 8.x. I compiled chrome WITH_DEBUG on both 8 and 9 and only on 8 a check fails at base/condition_variable_posix.cc:37 pthread_cond_wait returns nonzero. void ConditionVariable::Wait() { #if !defined(NDEBUG) user_lock_->CheckHeldAndUnmark(); #endif int rv = pthread_cond_wait(&condition_, user_mutex_); DCHECK(rv == 0); #if !defined(NDEBUG) user_lock_->CheckUnheldAndMark(); #endif } The chrome executable is over 1.5GB I tried ./chrome --renderer-cmd-prefix='xterm -e gdb72 --args' so i can get a backtrace but gdb dies, i added 4 more gigs of memory to my desktop (total 8GB) but it didn't make any difference. On a side note chromium 9 builds fine with clang from head, just by using clang=1 at GYP_DEFINES. Thank you for your work!