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
Line 
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
9 *  http://www.rtems.org/license/LICENSE.
10 */
11
12#include <rtems.h>
13#include <rtems/score/protectedheap.h>
14#include <rtems/malloc.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20/*
21 *  Process deferred free operations
22 */
23bool malloc_is_system_state_OK(void);
24void malloc_deferred_frees_process(void);
25void malloc_deferred_free(void *);
26
27#ifdef __cplusplus
28}
29#endif /* __cplusplus */
Note: See TracBrowser for help on using the repository browser.