src/os/linux/vm/vmError_linux.cpp

changeset 2350
2f644f85485d
parent 2314
f95d63e2154a
child 4154
c3e799c37717
     1.1 --- a/src/os/linux/vm/vmError_linux.cpp	Thu Dec 02 17:21:12 2010 -0800
     1.2 +++ b/src/os/linux/vm/vmError_linux.cpp	Fri Dec 03 01:34:31 2010 -0800
     1.3 @@ -44,11 +44,11 @@
     1.4      jio_snprintf(p, buflen - len,
     1.5                 "\n\n"
     1.6                 "Do you want to debug the problem?\n\n"
     1.7 -               "To debug, run 'gdb /proc/%d/exe %d'; then switch to thread " INTX_FORMAT "\n"
     1.8 +               "To debug, run 'gdb /proc/%d/exe %d'; then switch to thread " INTX_FORMAT " (" INTPTR_FORMAT ")\n"
     1.9                 "Enter 'yes' to launch gdb automatically (PATH must include gdb)\n"
    1.10                 "Otherwise, press RETURN to abort...",
    1.11                 os::current_process_id(), os::current_process_id(),
    1.12 -               os::current_thread_id());
    1.13 +               os::current_thread_id(), os::current_thread_id());
    1.14  
    1.15      yes = os::message_box("Unexpected Error", buf);
    1.16  

mercurial