Commit 451f21ef by Tom Tromey Committed by Tom Tromey

* prims.cc (_Jv_PrimClass): Use `JV_STATE_NOTHING', not `0'.

From-SVN: r31467
parent 9b4579b3
2000-01-15 Tom Tromey <tromey@cygnus.com>
* prims.cc (_Jv_PrimClass): Use `JV_STATE_NOTHING', not `0'.
2000-01-14 Andrew Haley <aph@cygnus.com> 2000-01-14 Andrew Haley <aph@cygnus.com>
* java/lang/natThrowable.cc: New file. * java/lang/natThrowable.cc: New file.
...@@ -27,7 +31,7 @@ ...@@ -27,7 +31,7 @@
* name-finder.cc: New file. * name-finder.cc: New file.
* include/name-finder.h: New file. * include/name-finder.h: New file.
2000-01-16 Anthony Green <green@cygnus.com> 2000-01-16 Anthony Green <green@cygnus.com>
* java/lang/StringBuffer.java (StringBuffer): Don't special case * java/lang/StringBuffer.java (StringBuffer): Don't special case
......
// prims.cc - Code for core of runtime environment. // prims.cc - Code for core of runtime environment.
/* Copyright (C) 1998, 1999 Cygnus Solutions /* Copyright (C) 1998, 1999, 2000 Cygnus Solutions
This file is part of libgcj. This file is part of libgcj.
...@@ -558,7 +558,7 @@ public: ...@@ -558,7 +558,7 @@ public:
interfaces = NULL; interfaces = NULL;
loader = NULL; loader = NULL;
interface_count = 0; interface_count = 0;
state = 0; // FIXME. state = JV_STATE_NOTHING;
thread = NULL; thread = NULL;
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment