summaryrefslogblamecommitdiffstats
path: root/cpukit/libmisc/shell/internal.h
blob: 56b1bb607774ec4f0539984b9cfe02d6c75ae444 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                           
                                         

   

                               
 

                  

                                                        
 
                             
                             
                            


  

                                                     
 
                                                                  
 

                                                                 
                                                                     
 
                                                        
 
                                        

                            
  
 


                                         
 

                                                              


                                          

                                                        
 
      
/*
 *  Shell Internal Information
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifndef _RTEMS_SHELL_INTERNAL_H
#define _RTEMS_SHELL_INTERNAL_H

#include "shell.h"

struct rtems_shell_topic_tt;
typedef struct rtems_shell_topic_tt rtems_shell_topic_t;

struct rtems_shell_topic_tt {
  const char          *topic;
  rtems_shell_topic_t *next;
};


extern rtems_shell_cmd_t   * rtems_shell_first_cmd;
extern rtems_shell_topic_t * rtems_shell_first_topic;

rtems_shell_topic_t * rtems_shell_lookup_topic(const char *topic);

bool rtems_shell_can_see_cmd(const rtems_shell_cmd_t *shell_cmd);

int rtems_shell_execute_cmd(const char *cmd, int argc, char *argv[]);

extern void rtems_shell_register_monitor_commands(void);

extern void rtems_shell_print_heap_info(
  const char             *c,
  const Heap_Information *h
);

extern void rtems_shell_print_heap_stats(
  const Heap_Statistics *s
);

extern void rtems_shell_print_unified_work_area_message(void);

#include <sys/types.h>

extern void strmode(mode_t mode, char *p);
extern const char *user_from_uid(uid_t uid, int nouser);
extern char *group_from_gid(gid_t gid, int nogroup);

#endif