source: rtems/cpukit/libcsupport/include/rtems/libcsupport.h @ 1487880d

4.104.114.95
Last change on this file since 1487880d was 1487880d, checked in by Joel Sherrill <joel.sherrill@…>, on 08/18/08 at 21:16:42

2008-08-18 Joel Sherrill <joel.sherrill@…>

  • libcsupport/include/rtems/libcsupport.h, libcsupport/src/scandir.c, libmisc/cpuuse/cpuusagereset.c, libmisc/monitor/mon-monitor.c, libmisc/serdbg/serdbg.c, libmisc/serdbg/serdbg.h, libnetworking/netinet/in_cksum_powerpc.h, shttpd/compat_rtems.h: Fix warnings.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1/**
2 * @file rtems/libcsupport.h
3 */
4
5/*  libcsupport.h
6 *
7 *  This include file contains the information regarding the
8 *  RTEMS specific support for the standard C library.
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#ifndef _RTEMS_RTEMS_LIBCSUPPORT_H
21#define _RTEMS_RTEMS_LIBCSUPPORT_H
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#include <stdint.h>
28
29#include <sys/types.h>
30
31void RTEMS_Malloc_Initialize(
32  void   *start,
33  size_t  length,
34  size_t  sbrk_amount
35);
36
37extern void malloc_dump(void);
38extern void malloc_walk(size_t source, size_t printf_enabled);
39extern void libc_init(void);
40extern int  host_errno(void);
41extern void fix_syscall_errno(void);
42extern size_t malloc_free_space(void);
43extern void open_dev_console(void);
44
45/*
46 *  Prototypes required to install newlib reentrancy user extension
47 */
48rtems_boolean libc_create_hook(
49  rtems_tcb *current_task,
50  rtems_tcb *creating_task
51);
52
53#if defined(RTEMS_UNIX) && !defined(hpux)
54  rtems_extension libc_begin_hook(rtems_tcb *current_task);
55  #define __RTEMS_NEWLIB_BEGIN libc_begin_hook
56#else
57  #define __RTEMS_NEWLIB_BEGIN 0
58#endif
59
60rtems_extension libc_delete_hook(
61  rtems_tcb *current_task,
62  rtems_tcb *deleted_task
63);
64
65#define RTEMS_NEWLIB_EXTENSION \
66{ \
67  libc_create_hook,                            /* rtems_task_create  */ \
68  0,                                           /* rtems_task_start   */ \
69  0,                                           /* rtems_task_restart */ \
70  libc_delete_hook,                            /* rtems_task_delete  */ \
71  0,                                           /* task_switch  */ \
72  __RTEMS_NEWLIB_BEGIN,                        /* task_begin   */ \
73  0,                                           /* task_exitted */ \
74  0                                            /* fatal        */ \
75}
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif
82/* end of include file */
Note: See TracBrowser for help on using the repository browser.