diff options
author | Carl Shapiro <cshapiro@google.com> | 2010-07-29 20:44:25 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-07-29 20:44:25 -0700 |
commit | 995b5ae8fc12df378dc4f228c86ab5f5bcb3a1a2 (patch) | |
tree | 1747a26ea3b96d6d18724ca434708f036aac05a9 | |
parent | a363035f3bbf56f6c4fe500dd85bc2f1330d7a20 (diff) | |
parent | f1461cbed38bdc4540ae114fbbe525350e05bbaf (diff) | |
download | android_dalvik-995b5ae8fc12df378dc4f228c86ab5f5bcb3a1a2.tar.gz android_dalvik-995b5ae8fc12df378dc4f228c86ab5f5bcb3a1a2.tar.bz2 android_dalvik-995b5ae8fc12df378dc4f228c86ab5f5bcb3a1a2.zip |
Merge "Remove unused limits.h include and fix sys/mman.h include comment."
-rw-r--r-- | vm/alloc/HeapBitmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vm/alloc/HeapBitmap.c b/vm/alloc/HeapBitmap.c index 2f412dc5c..1f4a9c977 100644 --- a/vm/alloc/HeapBitmap.c +++ b/vm/alloc/HeapBitmap.c @@ -17,8 +17,7 @@ #include "Dalvik.h" #include "HeapBitmap.h" #include "clz.h" -#include <limits.h> // for ULONG_MAX -#include <sys/mman.h> // for madvise(), mmap() +#include <sys/mman.h> /* for PROT_* */ #define LIKELY(exp) (__builtin_expect((exp) != 0, true)) #define UNLIKELY(exp) (__builtin_expect((exp) != 0, false)) |