< prev index next >

src/hotspot/share/compiler/compileLog.cpp

Print this page
*** 47,11 ***
    _identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
    _file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler);
     strcpy((char*)_file, file_name);
  
    // link into the global list
!   { MutexLocker locker(CompileTaskAlloc_lock);
      _next = _first;
      _first = this;
    }
  }
  
--- 47,11 ---
    _identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
    _file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler);
     strcpy((char*)_file, file_name);
  
    // link into the global list
!   { MonitorLocker locker(CompileTaskAlloc_lock);
      _next = _first;
      _first = this;
    }
  }
  
< prev index next >