< prev index next >

src/hotspot/share/utilities/vmError.cpp

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

@@ -802,10 +802,17 @@
        st->cr();
        st->print_cr("---------------  P R O C E S S  ---------------");
        st->cr();
      }
 
+#ifndef _WIN32
+  STEP("printing user info")
+     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 >