source: rtems/cpukit/libmisc/shell/internal.h @ 4a23aa45

5
Last change on this file since 4a23aa45 was 4a23aa45, checked in by Sebastian Huber <sebastian.huber@…>, on 12/13/17 at 07:27:58

shell: Include <rtems/shell.h>

Prepare for header file move to common include directory.

Update #3254.

  • Property mode set to 100644
File size: 881 bytes
Line 
1/*
2 *  Shell Internal Information
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.org/license/LICENSE.
7 */
8
9#ifndef _RTEMS_SHELL_INTERNAL_H
10#define _RTEMS_SHELL_INTERNAL_H
11
12#include <rtems/shell.h>
13
14extern rtems_shell_cmd_t   * rtems_shell_first_cmd;
15extern rtems_shell_topic_t * rtems_shell_first_topic;
16
17extern void rtems_shell_register_monitor_commands(void);
18
19extern void rtems_shell_print_heap_info(
20  const char             *c,
21  const Heap_Information *h
22);
23
24extern void rtems_shell_print_heap_stats(
25  const Heap_Statistics *s
26);
27
28extern void rtems_shell_print_unified_work_area_message(void);
29
30#include <sys/types.h>
31
32extern void strmode(mode_t mode, char *p);
33extern const char *user_from_uid(uid_t uid, int nouser);
34extern char *group_from_gid(gid_t gid, int nogroup);
35
36#endif
Note: See TracBrowser for help on using the repository browser.