This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: multiple definitions of java::lang::Object::notifyAll
- From: Marco Trudel <mtrudel at gmx dot ch>
- To: David Daney <ddaney at avtrex dot com>
- Cc: GCC Java <java at gcc dot gnu dot org>
- Date: Sun, 04 Feb 2007 16:43:46 +0100
- Subject: Re: multiple definitions of java::lang::Object::notifyAll
- References: <45C5C898.60807@gmx.ch> <45C5FC0D.9000503@avtrex.com>
David Daney wrote:
Marco Trudel wrote:
Hey all
java/lang/natObject.cc has two definitions of
java::lang::Object::notifyAll. The second one was added in May 2001 by
Tom (Revision 42519).
Is there a reason why the old is still around? It took me quite some
time to figure out why my printfs were ignored...
Maybe there are also other duplicates...
Indeed there are. There are two of almost everything. One for #ifndef
JV_HASH_SYNCHRONIZATION and one when it is defined.
Oh, I thought I checked defines but it looks like I didn't look closely
enough. Sorry for the noise...
Marco