Commit 172cd397 authored by vegorov@chromium.org's avatar vegorov@chromium.org

Define OS::MaxVirtualMemory on MinGW.

Patch by Bert Belder.

BUG=v8:1508

Review URL: http://codereview.chromium.org/7212030

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8553 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f465eeff
......@@ -44,11 +44,6 @@
namespace v8 {
namespace internal {
intptr_t OS::MaxVirtualMemory() {
return 0;
}
// Test for finite value - usually defined in math.h
int isfinite(double x) {
return _finite(x);
......@@ -197,6 +192,11 @@ int random() {
namespace v8 {
namespace internal {
intptr_t OS::MaxVirtualMemory() {
return 0;
}
double ceiling(double x) {
return ceil(x);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment