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]

Re: [patch] jvmti test, compatibility fixes.


>>>>> "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


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