Chromium Code Reviews| Index: src/d8.cc |
| diff --git a/src/d8.cc b/src/d8.cc |
| index 7157cb81acf85171b94e331ad02e8404323dd0c5..6b4d86f162a9f82e3114a26b18b8dc737bd4ad54 100644 |
| --- a/src/d8.cc |
| +++ b/src/d8.cc |
| @@ -62,6 +62,10 @@ |
| #define DCHECK(condition) assert(condition) |
| #endif |
| +#if V8_OS_AIX |
| +#define malloc __linux_malloc |
|
Sven Panne
2015/01/27 11:47:06
Why do we need this? A comment would be nice.
michael_dawson
2015/01/29 00:08:29
This is the comment I'll add explaining:
// On AIX
Sven Panne
2015/01/29 09:54:33
Hmmm, if I see this correctly, malloc(0) only happ
michael_dawson
2015/01/29 18:21:58
Will do
|
| +#endif |
| + |
| namespace v8 { |