summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/regionextend.c
blob: 3153889732832282c38a5ead5d1add34f5f645d4 (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
/**
 *  @file
 *
 *  @brief RTEMS Extend Region
 *  @ingroup ClassicRegion
 */

/*
 *  COPYRIGHT (c) 1989-2009.
 *  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.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/rtems/regionimpl.h>

rtems_status_code rtems_region_extend(
  rtems_id   id,
  void      *starting_address,
  uintptr_t  length
)
{
  rtems_status_code  status;
  Region_Control    *the_region;
  uintptr_t          amount_extended;

  if ( starting_address == NULL ) {
    return RTEMS_INVALID_ADDRESS;
  }

  the_region = _Region_Get_and_lock( id );

  if ( the_region == NULL ) {
    return RTEMS_INVALID_ID;
  }

  amount_extended = _Heap_Extend(
    &the_region->Memory,
    starting_address,
    length,
    0
  );

  if ( amount_extended > 0 ) {
    the_region->maximum_segment_size += amount_extended;
    status = RTEMS_SUCCESSFUL;
  } else {
    status = RTEMS_INVALID_ADDRESS;
  }

  _Region_Unlock( the_region );
  return status;
}