Ignore:
Timestamp:
05/01/02 22:33:52 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5a715de
Parents:
f4153d1
Message:

2002-03-20 Chris Johns <ccj@…>

  • monitor/mon-command.c: Per PR192 the RTEMS monitor makes everything lowercase. The capture engine need to set triggers or watches on task with uppercase names. Also stop the monitor repeating command when enter is pressed.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libmisc/monitor/mon-command.c

    rf4153d1 r80fe968c  
    395395            else
    396396            {
     397#ifdef ENABLE_ENTER_REPEATS
    397398              if (history_next)
    398399                memcpy (buffer, history_buffer[history_next - 1],
    399400                        RTEMS_COMMAND_BUFFER_SIZE);
     401#endif
    400402            }
    401403            memmove (command, buffer, RTEMS_COMMAND_BUFFER_SIZE);
     
    408410            {
    409411              int end;
    410               if (c >= 'A' && c <= 'Z')
    411                 c += 'a' - 'A';
    412412              end = strlen (buffer);
    413413              if ((pos < end) && (end < RTEMS_COMMAND_BUFFER_SIZE))
Note: See TracChangeset for help on using the changeset viewer.