Files
rtems/cpukit/libmisc/shell
Sebastian Huber b4f635e9d0 2011-11-10 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1924/cpukit
	* sapi/include/rtems/config.h: New fields stack_space_size,
	unified_work_area, and stack_allocator_avoids_work_space in
	rtems_configuration_table.
	* sapi/include/confdefs.h: Removed rtems_unified_work_area (this is
	now part of the Configuration).  Separate work space and stack space
	estimate.  Added CONFIGURE_TASK_STACK_ALLOCATOR_AVOIDS_WORK_SPACE
	configuration option.
	* libmisc/shell/main_wkspaceinfo.c, score/src/wkspace.c,
	libcsupport/src/malloc_initialize.c: Update due to API changes.
2011-11-10 14:40:13 +00:00
..
2009-11-29 12:12:39 +00:00
2008-08-21 12:29:02 +00:00
2009-06-12 05:51:43 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2009-10-22 04:29:32 +00:00
2008-08-21 12:29:02 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2011-03-24 09:38:01 +00:00
2009-11-29 12:12:39 +00:00
2009-04-14 13:41:33 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2008-08-21 12:29:02 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2008-08-21 12:29:02 +00:00
2009-11-29 12:12:39 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00

#
#  $Id$
#

This directory contains a shell user extension
primary features:

   + create a user shell terminal task.

This code has not been extensively tested.  It is provided as a tool
for RTEMS users to open more shell terminal.
Suggestions and comments are appreciated.

NOTES:

1.  printf() & getchar() works but you can't use 
    0,1,2 like fildes. You need to use fileno(stdin),fileno(stdout),...
    
2.  You only need a termios dev to start a new session, add your new commands
    and enjoy it.

3.  Telnetd daemon uses this (browse libnetworking/rtems_telnetd)
    Enjoy it.

FUTURE:

1.  Adding new commands in cmds.c to give file manegement to shell.