Index: src/platform-linux.cc |
diff --git a/src/platform-linux.cc b/src/platform-linux.cc |
index bad41ad605be6ae1ba2aa1f774f56e2c6a45df49..8296b6c34ad3c5d5c15958a32d4454a58717b30f 100644 |
--- a/src/platform-linux.cc |
+++ b/src/platform-linux.cc |
@@ -213,7 +213,7 @@ PosixMemoryMappedFile::~PosixMemoryMappedFile() { |
} |
-void OS::LogSharedLibraryAddresses() { |
+void OS::LogSharedLibraryAddresses(Isolate* isolate) { |
// This function assumes that the layout of the file is as follows: |
// hex_start_addr-hex_end_addr rwxp <unused data> [binary_file_name] |
// If we encounter an unexpected situation we abort scanning further entries. |
@@ -224,7 +224,6 @@ void OS::LogSharedLibraryAddresses() { |
const int kLibNameLen = FILENAME_MAX + 1; |
char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen)); |
- i::Isolate* isolate = Isolate::Current(); |
// This loop will terminate once the scanning hits an EOF. |
while (true) { |
uintptr_t start, end; |