summaryrefslogblamecommitdiffstats
path: root/cpukit/rtems/src/regionextend.c
blob: 3153889732832282c38a5ead5d1add34f5f645d4 (plain) (tree)
1
2
3
4
5
6
7
8
9

         
  




                              
                            
                                                    


                                                           
                                         

   



                   
                                   
 
                                      


                              

 


                                     
 
                                   
                                 

   













                                          

                                                        
          
                                   
   
 
                               
                
 
/**
 *  @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;
}