Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Jan 2003 17:30:31 -0800
From:      "William Holt" <wiholt@cabrillo.edu>
To:        freebsd-current@FreeBSD.ORG
Subject:   RC3 with JDK1.3.1 cause bus error core dump
Message-ID:  <web-4022876@cabrillo.edu>

next in thread | raw e-mail | index | archive | help
Hi,

I have been trying to use Jetty with RC3 and not having any
luck.
Today I pinned it down to a problem with trying to convert
a
SocketListener to a String!  The following short program
crashes
in exactly the same way as Jetty...  Any ideas how to fix
this?

Thank you,
-Will


===============snip=====================
import java.net.*;
public class CrashBSD
{
    static public void main( String args[] )
    {
        try
        {
            ServerSocket ss = new ServerSocket( 0, 4 );
            System.out.println( ss );
        } 
        catch ( Exception e ) { System.out.println( e );
System.exit( 1 ); }
    }
}

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




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