This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

jdwp build failure


Hey all

I pointed this out already last week but maybe it slipped under or got forgotten (or I'm just too impatient):
jdwp currently causes a build error since "OUT" seems to be reserved for something else or whatever. In any case, I just renamed it to OUTT and the build works again.


Keith, this is your field as far as I noticed on the mailinglist. Can you give it a meaningful name and commit?


thanks Marco
Index: gnu/classpath/jdwp/JdwpConstants$StepDepth.h
===================================================================
--- gnu/classpath/jdwp/JdwpConstants$StepDepth.h	(revision 122072)
+++ gnu/classpath/jdwp/JdwpConstants$StepDepth.h	(working copy)
@@ -28,7 +28,7 @@
   JdwpConstants$StepDepth();
   static const jint INTO = 0;
   static const jint OVER = 1;
-  static const jint OUT = 2;
+  static const jint OUTT = 2;
   static ::java::lang::Class class$;
 };
 
Index: gnu/classpath/jdwp/natVMVirtualMachine.cc
===================================================================
--- gnu/classpath/jdwp/natVMVirtualMachine.cc	(revision 122072)
+++ gnu/classpath/jdwp/natVMVirtualMachine.cc	(working copy)
@@ -889,7 +889,7 @@
 	    }
 	  break;
 
-	case JdwpConstants$StepDepth::OUT:
+	case JdwpConstants$StepDepth::OUTT:
 	  // All we need to do is check the stack depth
 	  if (sinfo->stack_depth > frame->depth ())
 	    handle_single_step (env, sinfo, thread, method, location);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]