diff options
author | Barry Hayes <bhayes@google.com> | 2010-01-06 10:59:39 -0800 |
---|---|---|
committer | Barry Hayes <bhayes@google.com> | 2010-01-26 13:35:20 -0800 |
commit | b17772dcc8ac2acccf658da262edcc303fafcafb (patch) | |
tree | ecc58cccce1e6d1c593ea9310e07d78e7aae6899 /include/cutils | |
parent | eab453c612d6d422f863c31da67f00bc4beec914 (diff) | |
download | system_core-b17772dcc8ac2acccf658da262edcc303fafcafb.zip system_core-b17772dcc8ac2acccf658da262edcc303fafcafb.tar.gz system_core-b17772dcc8ac2acccf658da262edcc303fafcafb.tar.bz2 |
Break out create_contiguous_mspace_with_base
This routine allows creating a contiguous mspace from raw mapped memory.
In turn, this will enable preallocation of the 3 heap spaces, which will help
remembered sets and zygote/app checks given pointer values.
Diffstat (limited to 'include/cutils')
-rw-r--r-- | include/cutils/mspace.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/cutils/mspace.h b/include/cutils/mspace.h index 33410c1..e6e4047 100644 --- a/include/cutils/mspace.h +++ b/include/cutils/mspace.h @@ -80,6 +80,12 @@ mspace create_contiguous_mspace(size_t starting_capacity, size_t max_capacity, mspace create_contiguous_mspace_with_name(size_t starting_capacity, size_t max_capacity, int locked, const char *name); +/* + Identical to create_contiguous_mspace, but uses previously mapped memory. +*/ +mspace create_contiguous_mspace_with_base(size_t starting_capacity, + size_t max_capacity, int locked, void *base); + size_t destroy_contiguous_mspace(mspace msp); #endif |