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
This commit is contained in:
parent
f465eeff69
commit
172cd39760
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user