[patch] jvmti test, compatibility fixes.

Tom Tromey tromey@redhat.com
Fri Oct 20 23:45:00 GMT 2006


>>>>> "Andreas" == Andreas Tobler <toa@pop.agri.ch> writes:

Andreas> this one makes HPPA-HPUX happy again with jvmti tests.

FWIW I think this may be PR 29424.

Andreas> -  printf ("VMInitCB jni_env=%p thread=%p\n", jni_env, thread);
Andreas> +  printf ("VMInitCB jni_env=%#x thread=%#x\n", jni_env, thread);

I think we need this instead:
 
  printf ("VMInitCB jni_env=%#llx thread=%#llx\n",
          (unsigned long long) jni_env, (unsigned long long) thread);

... or whatever it is Geoff used elsewhere.

Tom



More information about the Java-patches mailing list