2012-07-15 07:31:12 +08:00
|
|
|
/****************************************************************************
|
2014-09-23 00:53:50 +08:00
|
|
|
* mm/mm_heap/mm_calloc.c
|
2007-02-18 07:21:28 +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
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 20:50:10 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +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.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2012-07-15 07:31:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-07-15 07:31:12 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2012-07-15 07:31:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2013-03-09 04:36:18 +08:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2014-09-24 21:29:09 +08:00
|
|
|
#include <nuttx/mm/mm.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-07-15 07:31:12 +08:00
|
|
|
/****************************************************************************
|
2014-09-01 00:54:55 +08:00
|
|
|
* Public Functions
|
2012-07-15 07:31:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2013-03-09 04:36:18 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: mm_calloc
|
|
|
|
*
|
2014-09-01 00:54:55 +08:00
|
|
|
* Descriptor:
|
|
|
|
* mm_calloc() calculates the size of the allocation and calls mm_zalloc()
|
2013-03-09 04:36:18 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR void *mm_calloc(FAR struct mm_heap_s *heap, size_t n, size_t elem_size)
|
|
|
|
{
|
2023-05-02 20:58:22 +08:00
|
|
|
FAR void *mem = NULL;
|
|
|
|
|
|
|
|
/* Verify input parameters
|
|
|
|
*
|
|
|
|
* elem_size or n is zero treats as valid input.
|
|
|
|
*
|
|
|
|
* Assure that the following multiplication cannot overflow the size_t
|
|
|
|
* type, i.e., that: SIZE_MAX >= n * elem_size
|
|
|
|
*
|
|
|
|
* Refer to SEI CERT C Coding Standard.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (elem_size == 0 || n <= (SIZE_MAX / elem_size))
|
2013-03-09 04:36:18 +08:00
|
|
|
{
|
2023-05-02 20:58:22 +08:00
|
|
|
mem = mm_zalloc(heap, n * elem_size);
|
2013-03-09 04:36:18 +08:00
|
|
|
}
|
|
|
|
|
2023-05-02 20:58:22 +08:00
|
|
|
return mem;
|
2013-03-09 04:36:18 +08:00
|
|
|
}
|