source: rtems/c/src/lib/include/rtems/libcsupport.h @ 82478528

4.104.114.84.95
Last change on this file since 82478528 was b1c215e, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/96 at 20:52:16

added prototype for malloc_walk

  • Property mode set to 100644
File size: 1006 bytes
Line 
1/*  libcsupport.h
2 *
3 *  This include file contains the information regarding the
4 *  RTEMS specific support for the standard C library.
5 *
6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
7 *  On-Line Applications Research Corporation (OAR).
8 *  All rights assigned to U.S. Government, 1994.
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 *
14 *  $Id$
15 */
16
17#ifndef __LIBC_SUPPORT_h
18#define __LIBC_SUPPORT_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <sys/types.h>
25
26void RTEMS_Malloc_Initialize(
27  void   *start,
28  size_t  length,
29  size_t  sbrk_amount
30);
31
32extern void malloc_dump(void);
33extern void malloc_walk(size_t source, size_t printf_enabled);
34extern void libc_init(int reentrant);
35extern int  host_errno(void);
36extern void fix_syscall_errno(void);
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
43/* end of include file */
Note: See TracBrowser for help on using the repository browser.