summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/heapnoextend.c
blob: 99952e690ca57d1398e02dc8c39429049e40546a (plain) (tree)
1
2
3
4
5
6
7


        
                          
  

                                                         












                                                                 
                                        

   

                    

      
                                 

                          



                                      



           
/**
 * @file
 *
 * @ingroup RTEMSScoreHeap
 *
 * @brief This source file contains the implementation of
 *   _Heap_No_extend().
 */

/*
 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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

#include <rtems/score/heapimpl.h>

uintptr_t _Heap_No_extend(
  Heap_Control *unused_0 RTEMS_UNUSED,
  void *unused_1 RTEMS_UNUSED,
  uintptr_t unused_2 RTEMS_UNUSED,
  uintptr_t unused_3 RTEMS_UNUSED
)
{
  return 0;
}