Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Jan 2000 10:27:18 -0800
From:      Jeffrey Hsu <hsu@FreeBSD.org>
To:        "Koster, K.J." <K.J.Koster@research.kpn.com>
Cc:        'FreeBSD Java mailing list' <freebsd-java@freebsd.org>
Subject:   Re: Linux JDK Swing crashes...
Message-ID:  <0FP2003U35WD94@mta4.snfc21.pbi.net>
In-Reply-To: "Message from Koster, K.J." <K.J.Koster@research.kpn.com> "of Fri, 28 Jan 2000 13:37:13 %2B0100." <59063B5B4D98D311BC0D0001FA7E45220FD1C6@l04.research.kpn.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Try using Green threads:

*** bin/.java_wrapper.0 Mon Dec  6 06:12:44 1999
--- bin/.java_wrapper   Fri Jan  7 17:36:51 2000
***************
*** 32,39 ****
  # Resolve symlinks. See 4152645.
  while [ -L "$PRG" ]; do
      ls=`/bin/ls -ld "$PRG"`
!     link=`/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
!     if /usr/bin/expr "$link" : '/' > /dev/null; then
        PRG="$link"
      else
        PRG="`/usr/bin/dirname $PRG`/$link"
--- 32,39 ----
  # Resolve symlinks. See 4152645.
  while [ -L "$PRG" ]; do
      ls=`/bin/ls -ld "$PRG"`
!     link=`/bin/expr "$ls" : '.*-> \(.*\)$'`
!     if /bin/expr "$link" : '\/' > /dev/null; then
        PRG="$link"
      else
        PRG="`/usr/bin/dirname $PRG`/$link"
***************
*** 65,71 ****
  # Select vm type (if classic vm, also select thread type).
  unset vmtype
  unset ttype
! DEFAULT_THREADS_FLAG=native
  if [ "x$1" = "x-hotspot" ]; then
      vmtype=hotspot
      ttype=native_threads
--- 65,71 ----
  # Select vm type (if classic vm, also select thread type).
  unset vmtype
  unset ttype
! DEFAULT_THREADS_FLAG=green
  if [ "x$1" = "x-hotspot" ]; then
      vmtype=hotspot
      ttype=native_threads




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-java" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?0FP2003U35WD94>