diff src/share/vm/utilities/ostream.hpp @ 8108:0598674c0056

8008314: Unimplemented() Atomic::load breaks the applications Summary: jlong atomics isn't fully implemented om all 32-bit platforms so we try to avoid it. In this case the atomic add wasn't needed. Reviewed-by: dholmes, dlong
author jwilhelm
date Thu, 21 Feb 2013 11:16:50 +0100
parents 4ee06e614636
children e12c9b3740db
line wrap: on
line diff
--- a/src/share/vm/utilities/ostream.hpp	Wed Feb 20 12:52:13 2013 -0800
+++ b/src/share/vm/utilities/ostream.hpp	Thu Feb 21 11:16:50 2013 +0100
@@ -231,7 +231,7 @@
 class rotatingFileStream : public fileStream {
  protected:
   char*  _file_name;
-  jlong  _bytes_writen;
+  jlong  _bytes_written;
   uintx  _cur_file_num;             // current logfile rotation number, from 0 to MaxGCLogFileNumbers-1
  public:
   rotatingFileStream(const char* file_name);