From owner-freebsd-java@FreeBSD.ORG Fri Oct 20 14:53:21 2006 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B694416A415; Fri, 20 Oct 2006 14:53:21 +0000 (UTC) (envelope-from kurt@intricatesoftware.com) Received: from mta5.srv.hcvlny.cv.net (mta5.srv.hcvlny.cv.net [167.206.4.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DBE43D55; Fri, 20 Oct 2006 14:53:21 +0000 (GMT) (envelope-from kurt@intricatesoftware.com) Received: from [172.16.1.72] (ool-457a77e8.dyn.optonline.net [69.122.119.232]) by mta5.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J7F00CB3VMB1D40@mta5.srv.hcvlny.cv.net>; Fri, 20 Oct 2006 10:44:36 -0400 (EDT) Date: Fri, 20 Oct 2006 10:44:34 -0400 From: Kurt Miller In-reply-to: <200610202209.02804.davidxu@freebsd.org> To: freebsd-java@freebsd.org Message-id: <200610201044.34910.kurt@intricatesoftware.com> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline References: <200610180716.15918.davidxu@freebsd.org> <200610200844.15826.lists@intricatesoftware.com> <200610202209.02804.davidxu@freebsd.org> User-Agent: KMail/1.9.5 Cc: David Xu Subject: Re: jdk15 can not pass its Java2D test X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Oct 2006 14:53:21 -0000 On Friday 20 October 2006 10:09 am, David Xu wrote: ... > Script done on Fri Oct 20 21:56:40 2006 > -------------------------- > in frame #7, the image pointer's is 0x53157000, it looks like a > valid address, but the memory it pointing is inaccessible, so I think > the mlib_malloc() just returned an unusable memory address. > The gdb's output for libthr seems better than for libpthread. mlib_malloc is a wrapper for valloc(3): j2se/src/share/native/sun/awt/medialib/mlib_sys.c:76 Perhaps this is a valloc(3) bug in -current. -Kurt