mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Stefan Richter <stefanr@s5r6.in-berlin.de>
To: jmerkey@wolfmountaingroup.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2.6.27-rc1 6/25] mdb:  Merkey's Kernel Debugger 2.6.27-rc1
Date: Mon, 04 Aug 2008 16:17:50 +0200	[thread overview]
Message-ID: <48970F8E.9010507@s5r6.in-berlin.de> (raw)
In-Reply-To: <37445.166.70.238.45.1217831466.squirrel@webmail.wolfmountaingroup.com>

jmerkey@wolfmountaingroup.com wrote:
> --- a/debug/mdb.c	1969-12-31 17:00:00.000000000 -0700
> +++ b/debug/mdb.c	2008-08-03 16:15:00.000000000 -0600
[...]
> +ULONG ScreenInputFromKeyboard(BYTE *buf, ULONG buf_index, ULONG max_index)
> +{
[...]
> +    HistoryIndex = HistoryPointer;
> +    while (1)
> +    {
> +       key = mdb_getkey();
> +
> +       if ((IsAccelerator(key)) && (key != 13))
> +	  return key;
> +
> +       switch (key)
> +       {
[...]
> +	  default:
> +	     if ((key > 0x7E) || (key < ' '))  // if above or below text
> +		break;
> +	     else
> +	     {
> +	        if (strlen(buf) < max_index)
> +		{
> +                   register int delta;
> +
> +		   for (i=max_index; i > buf_index; i--)
> +		      buf[i] = buf[i-1];
> +		   buf[buf_index] = (BYTE)key;
> +		   if (buf_index < max_index)
> +		      buf_index++;
> +
> +                   delta = strlen(buf) - buf_index;
> +
> +                   for (i=0; (i < delta) && (buf[i]); i++)
> +                        DBGPrint("%c", buf[buf_index + i]);
> +
> +                   for (i=0; i < delta; i++)
> +                        DBGPrint("\b");
> +		}
> +             }
> +	     break;
> +       }
> +    }
> +}

This function would benefit from being broken up into smaller ones.
-- 
Stefan Richter
-=====-==--- =--- --=--
http://arcgraph.de/sr/

      reply	other threads:[~2008-08-04 14:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-04  6:31 jmerkey
2008-08-04 14:17 ` Stefan Richter [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48970F8E.9010507@s5r6.in-berlin.de \
    --to=stefanr@s5r6.in-berlin.de \
    --cc=jmerkey@wolfmountaingroup.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®