2014-09-01 04:42:45 +08:00
|
|
|
/****************************************************************************
|
2014-09-23 00:53:50 +08:00
|
|
|
* mm/mm_heap/mm_brkaddr.c
|
2014-09-01 04:42:45 +08:00
|
|
|
*
|
2021-02-08 20:50:10 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2014-09-01 04:42:45 +08:00
|
|
|
*
|
2021-02-08 20:50:10 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-09-01 04:42:45 +08:00
|
|
|
*
|
2021-02-08 20:50:10 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2014-09-01 04:42:45 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2014-09-24 21:29:09 +08:00
|
|
|
#include <nuttx/mm/mm.h>
|
2014-09-01 04:42:45 +08:00
|
|
|
|
2021-03-02 16:03:00 +08:00
|
|
|
#include "mm_heap/mm.h"
|
|
|
|
|
2014-09-01 04:42:45 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: mm_brkaddr
|
|
|
|
*
|
|
|
|
* Description:
|
2014-09-02 00:46:51 +08:00
|
|
|
* Return the break address of a heap region. Zero is returned if the
|
|
|
|
* memory region is not initialized.
|
2014-09-01 04:42:45 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR void *mm_brkaddr(FAR struct mm_heap_s *heap, int region)
|
|
|
|
{
|
|
|
|
uintptr_t brkaddr;
|
2021-03-02 16:03:00 +08:00
|
|
|
|
2014-09-04 01:43:23 +08:00
|
|
|
#if CONFIG_MM_REGIONS > 1
|
2021-07-03 22:16:25 +08:00
|
|
|
DEBUGASSERT(heap && region < heap->mm_nregions);
|
2014-09-04 01:43:23 +08:00
|
|
|
#else
|
|
|
|
DEBUGASSERT(heap && region == 0);
|
|
|
|
#endif
|
2014-09-01 04:42:45 +08:00
|
|
|
|
2021-07-03 22:16:25 +08:00
|
|
|
brkaddr = (uintptr_t)heap->mm_heapend[region];
|
2014-09-02 00:46:51 +08:00
|
|
|
return brkaddr ? (FAR void *)(brkaddr + SIZEOF_MM_ALLOCNODE) : 0;
|
2014-09-01 04:42:45 +08:00
|
|
|
}
|