From owner-freebsd-java Wed Feb 19 10: 8:26 2003 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 ABED937B401 for ; Wed, 19 Feb 2003 10:08:24 -0800 (PST) Received: from murmeldjur.it.su.se (murmeldjur.it.su.se [130.237.95.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id C56BB43FAF for ; Wed, 19 Feb 2003 10:08:23 -0800 (PST) (envelope-from rnyberg@murmeldjur.it.su.se) Received: from murmeldjur.it.su.se (localhost [127.0.0.1]) by murmeldjur.it.su.se (8.12.6/8.12.6) with ESMTP id h1JI8LNj060794; Wed, 19 Feb 2003 19:08:21 +0100 (CET) (envelope-from rnyberg@murmeldjur.it.su.se) Received: (from rnyberg@localhost) by murmeldjur.it.su.se (8.12.6/8.12.6/Submit) id h1JI8LBp060793; Wed, 19 Feb 2003 19:08:21 +0100 (CET) Date: Wed, 19 Feb 2003 19:08:20 +0100 From: Richard Nyberg To: Chris Barown Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.3 with native threads Message-ID: <20030219180820.GA14339@murmeldjur.it.su.se> Mail-Followup-To: Richard Nyberg , Chris Barown , freebsd-java@FreeBSD.ORG References: <5.2.0.9.0.20030219124745.03126cb0@harding.rbs> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.2.0.9.0.20030219124745.03126cb0@harding.rbs> User-Agent: Mutt/1.4i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Feb 19, 2003 at 12:50:00PM -0500, Chris Barown wrote: > After watching the list for the last 2 weeks, > I have decided to install the jdk13 with > native threads, but I get the following error: > This is on a dual processor machine running 5.0-release. Me too. > Any ideas? Yeah. Put '#include ' before '#include ' in the offending file. However that only brings me to the following errors in threads_bsd.c: ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:34:29: pthread_private.h: No such file or directory ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c: In function `np_stackinfo': ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:115: `_thread_initial' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:115: (Each undeclared identifier is reported only once ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:115: for each function it appears in.) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:116: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:117: `PTHREAD_STACK_DEFAULT' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:115: for each function it appears in.) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:116: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:117: `PTHREAD_STACK_DEFAULT' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c: In function `record_thread_regs': ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:210: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c: At top level: ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:287: warning: `enum pthread_susp' declared inside parameter list ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:287: warning: its scope is only this definition or declaration, which is probably not what you want ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:288: parameter `suspendState' has incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:321: warning: initializer-string for array of chars is too long ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:321: warning: (near initialization for `SignalList[21]') ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:323: warning: excess elements in array initializer ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:323: warning: (near initialization for `SignalList') ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:325: warning: `enum pthread_state' declared inside parameter list ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:326: parameter `threadState' has incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c: In function `record_gc_registers_of': ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:515: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:515: `PTHREAD_FLAGS_PRIVATE' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:518: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:527: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:527: `PS_SUSPENDED' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:530: dereferencing pointer to incomplete type ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:532: `CTX_JB_NOSIG' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:533: `CTX_JB' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:534: `CTX_SJB' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:540: `CTX_UC' undeclared (first use in this function) ../../../../src/solaris/hpi/native_threads/src/threads_bsd.c:542: dereferencing pointer to incomplete type Any ideas now? -Richard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message