[rk_malloc]: remove rk_mpp_set_mem_align function

git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@37 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
ChenHengming
2015-08-05 09:46:53 +00:00
parent 4689943122
commit 7a8f2b7249
3 changed files with 26 additions and 24 deletions

View File

@@ -20,12 +20,7 @@
int main()
{
void *tmp = NULL;
rk_log("try memalign of 512\n");
rk_mpp_set_mem_align(512);
tmp = rk_malloc(int, 100);
void *tmp = rk_malloc(int, 100);
if (tmp) {
rk_log("malloc success\n");
rk_free(tmp);