forked from Imagelibrary/rtems
In POSIX, zero size memory allocations are implementation-defined behaviour. The implementation has two options: https://pubs.opengroup.org/onlinepubs/9699919799/functions/malloc.html https://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_memalign.html Linux and FreeBSD return a unique pointer for zero size memory allocations. Return NULL on RTEMS to more likely catch the use of a zero size memory area by erroneous applications. Update #4390.
47 lines
759 B
C
47 lines
759 B
C
/**
|
|
* @file
|
|
*
|
|
* @brief RTEMS Malloc Family Implementation
|
|
* @ingroup libcsupport
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-2007.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifdef RTEMS_NEWLIB
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
|
|
#include "malloc_p.h"
|
|
|
|
void *malloc(
|
|
size_t size
|
|
)
|
|
{
|
|
void *return_this;
|
|
|
|
if ( size == 0 ) {
|
|
return NULL;
|
|
}
|
|
|
|
return_this = rtems_heap_allocate_aligned_with_boundary( size, 0, 0 );
|
|
if ( !return_this ) {
|
|
errno = ENOMEM;
|
|
return (void *) 0;
|
|
}
|
|
|
|
return return_this;
|
|
}
|
|
|
|
#endif
|