summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/posix_memalign.c
blob: 4e89413c242d82f73bf8cfd860bf6266d743b7cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
 * @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