summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/posix_memalign.c
blob: 4e89413c242d82f73bf8cfd860bf6266d743b7cf (plain) (tree)
1
2
3
4
5
6
7
8

        
  



                       
                            



                                                           
                                         

   
                    









                     
                  



                     







                                     



                    
                                       
                  










                                                                            
 
           

      
/**
 * @file
 *
 * @ingroup libcsupport
 */

/*
 *  COPYRIGHT (c) 1989-2008.
 *  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 "malloc_p.h"

#include <stdlib.h>
#include <errno.h>

int posix_memalign(
  void   **memptr,
  size_t   alignment,
  size_t   size
)
{
  RTEMS_OBFUSCATE_VARIABLE( memptr );

  if ( memptr == NULL ) {
    return EINVAL;
  }

  *memptr = NULL;

  if ( size == 0 ) {
    return 0;
  }

  if ( alignment < sizeof( void * ) ) {
    return EINVAL;
  }

  if ( ( ( alignment - 1 ) & alignment ) != 0 ) {
    return EINVAL;
  }

  *memptr = rtems_heap_allocate_aligned_with_boundary( size, alignment, 0 );

  if ( *memptr == NULL ) {
    return ENOMEM;
  }

  return 0;
}
#endif