Index: src/platform-openbsd.cc |
diff --git a/src/platform-openbsd.cc b/src/platform-openbsd.cc |
index 198eedf3833ede00eb587daab9d6c31ae77934f7..78654b635441bc2ffe9e20f122a74a610fdad8df 100644 |
--- a/src/platform-openbsd.cc |
+++ b/src/platform-openbsd.cc |
@@ -132,7 +132,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. |
@@ -143,7 +143,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; |