This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Exception in SWT + serial port application
- From: Tom Tromey <tromey at redhat dot com>
- To: Øyvind Harboe <oyvind dot harboe at zylin dot com>
- Cc: <java at gcc dot gnu dot org>
- Date: 19 Dec 2002 12:31:44 -0700
- Subject: Re: Exception in SWT + serial port application
- References: <16B602A8A0347C41B07009FE4C29012F2284A7@isp-ex2k.intellimade.net>
- Reply-to: tromey at redhat dot com
>>>>> "Øyvind" == Øyvind Harboe <oyvind.harboe@zylin.com> writes:
Øyvind> win32-threads.cc:_Jv_ThreadInterrupt
Øyvind> Unimplemented
Øyvind> - Thread.interrupt() is not implemented in GCJ.
Actually, it is just the Win32 port that is missing Thread.interrupt.
It works fine for the Unix ports.
As I recall, implementing it correctly for Windows was difficult. I
think it had to do with the difficulty of interrupting I/O operations.
Øyvind> Q: If I'm on the right track, is there a solution to this issue?
Øyvind> My GCJ superpowers are not quite yet up to the task of implementing
Øyvind> _Jv_ThreadInterrupt.
I'm afraid you'll have to find someone else to implement the missing
functionality. I don't know enough about Win32 to do it.
There are a few things like this missing from the Win32 port; that
port is still a bit immature.
Tom