source: rtems/cpukit/libcsupport/src/malloc_p.h @ 287a70f

5
Last change on this file since 287a70f was 287a70f, checked in by Sebastian Huber <sebastian.huber@…>, on 02/25/16 at 08:05:40

malloc: Clean up "malloc_p.h" header file

  • Property mode set to 100644
File size: 644 bytes
RevLine 
[543fe820]1/*
2 *  RTEMS Malloc Family Internal Header
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[c499856]9 *  http://www.rtems.org/license/LICENSE.
[543fe820]10 */
11
12#include <rtems.h>
13#include <rtems/score/protectedheap.h>
14#include <rtems/malloc.h>
15
[287a70f]16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
[543fe820]19
[8e30a269]20/*
21 *  Process deferred free operations
22 */
[4088d01d]23bool malloc_is_system_state_OK(void);
[635865ae]24void malloc_deferred_frees_process(void);
[7fbe6805]25void malloc_deferred_free(void *);
[287a70f]26
27#ifdef __cplusplus
28}
29#endif /* __cplusplus */
Note: See TracBrowser for help on using the repository browser.