< prev index next >

src/hotspot/share/utilities/vmError.cpp

Print this page
rev 52457 : 8211326: add OS user related information to hs_err file

@@ -820,10 +820,19 @@
        st->cr();
        st->print_cr("---------------  P R O C E S S  ---------------");
        st->cr();
      }
 
+#ifndef _WIN32
+  STEP("printing user info")
+     if (ExtensiveErrorReports) {
+       if (_verbose) {
+         os::Posix::print_user_info(st, buf, sizeof(buf));
+       }
+     }
+#endif
+
   STEP("printing all threads")
 
      // all threads
      if (_verbose && _thread) {
        Threads::print_on_error(st, _thread, buf, sizeof(buf));
< prev index next >