Index: src/platform-solaris.cc |
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc |
index d8b60c386e07a49df1d703e17efae5aa71c50793..66f23ae6157f298bff7b41773f49613eab058798 100644 |
--- a/src/platform-solaris.cc |
+++ b/src/platform-solaris.cc |
@@ -361,16 +361,4 @@ bool VirtualMemory::HasLazyCommits() { |
return false; |
} |
- |
-void OS::SetUp() { |
- // Seed the random number generator. |
- // Convert the current time to a 64-bit integer first, before converting it |
- // to an unsigned. Going directly will cause an overflow and the seed to be |
- // set to all ones. The seed will be identical for different instances that |
- // call this setup code within the same millisecond. |
- uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); |
- srandom(static_cast<unsigned int>(seed)); |
-} |
- |
- |
} } // namespace v8::internal |