source: rtems/cpukit/libcsupport/src/free.c @ 02733495

4.115
Last change on this file since 02733495 was 02733495, checked in by Sebastian Huber <sebastian.huber@…>, on 11/24/14 at 14:20:25

libcsupport: malloc_is_system_state_OK()

Move system state check to malloc_is_system_state_OK().

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @brief calloc()
5 * @ingroup libcsupport
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#ifdef RTEMS_NEWLIB
22#include "malloc_p.h"
23#include <stdlib.h>
24
25#include <rtems/score/sysstate.h>
26
27void free(
28  void *ptr
29)
30{
31  MSBUMP(free_calls, 1);
32
33  if ( !ptr )
34    return;
35
36  /*
37   *  Do not attempt to free memory if in a critical section or ISR.
38   */
39  if ( !malloc_is_system_state_OK() ) {
40      malloc_deferred_free(ptr);
41      return;
42  }
43
44  /*
45   *  If configured, update the statistics
46   */
47  if ( rtems_malloc_statistics_helpers )
48    (*rtems_malloc_statistics_helpers->at_free)(ptr);
49
50  if ( !_Protected_heap_Free( RTEMS_Malloc_Heap, ptr ) ) {
51    printk( "Program heap: free of bad pointer %p -- range %p - %p \n",
52      ptr,
53      RTEMS_Malloc_Heap->area_begin,
54      RTEMS_Malloc_Heap->area_end
55    );
56  }
57
58}
59#endif
Note: See TracBrowser for help on using the repository browser.