2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2014-09-22 18:53:50 +02:00
|
|
|
* mm/mm_heap/mm_calloc.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01: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 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01: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 00:21:28 +01:00
|
|
|
*
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2014-09-24 15:29:09 +02:00
|
|
|
#include <nuttx/mm/mm.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-07-15 01:31:12 +02:00
|
|
|
/****************************************************************************
|
2014-08-31 18:54:55 +02:00
|
|
|
* Public Functions
|
2012-07-15 01:31:12 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: mm_calloc
|
|
|
|
*
|
2014-08-31 18:54:55 +02:00
|
|
|
* Descriptor:
|
|
|
|
* mm_calloc() calculates the size of the allocation and calls mm_zalloc()
|
2013-03-08 21:36:18 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR void *mm_calloc(FAR struct mm_heap_s *heap, size_t n, size_t elem_size)
|
|
|
|
{
|
|
|
|
FAR void *ret = NULL;
|
|
|
|
|
2019-01-07 23:13:48 +01:00
|
|
|
/* Verify input parameters */
|
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
if (n > 0 && elem_size > 0)
|
|
|
|
{
|
2019-01-07 23:13:48 +01:00
|
|
|
/* 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 (n <= (SIZE_MAX / elem_size))
|
|
|
|
{
|
|
|
|
ret = mm_zalloc(heap, n * elem_size);
|
|
|
|
}
|
2013-03-08 21:36:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|