hotspot/test/runtime/jsig/TestJNI.c
changeset 18988 0e7cbc5c39ec
parent 18952 dd89db581bca
--- a/hotspot/test/runtime/jsig/TestJNI.c	Fri Jul 26 15:24:32 2013 +0000
+++ b/hotspot/test/runtime/jsig/TestJNI.c	Tue Jul 30 14:14:25 2013 -0700
@@ -21,7 +21,6 @@
  * questions.
  */
 
-#define _GNU_SOURCE // for the definition of REG_RIP in ucontext.h
 #include <stdio.h>
 #include <jni.h>
 #include <signal.h>
@@ -32,11 +31,8 @@
 #endif
 
 void sig_handler(int sig, siginfo_t *info, ucontext_t *context) {
-    int thrNum;
 
     printf( " HANDLER (1) " );
-    // Move forward RIP to skip failing instruction
-    context->uc_mcontext.gregs[REG_RIP] += 6;
 }
 
 JNIEXPORT void JNICALL Java_TestJNI_doSomething(JNIEnv *env, jclass klass, jint val) {