Re: [PATCH 1/8] kgdb: core API and gdb protocol handler

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Ray Lee
Date: Saturday, February 9, 2008 - 12:46 pm

On Feb 9, 2008 9:27 AM, Christoph Hellwig <hch@infradead.org> wrote:

void u32_to_hex(u32 val, unsigned char *buf)
{
         int i;

         for (i=7; i>=0; i--) {
                  buf[i] = hexchars[ val & 0x0f ];
                  val >>= 4;
         }
}

         u32_to_hex(tmp_s, buf);
         buf += 8;
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/8] kgdb 2.6.25 version, jason.wessel, (Sat Feb 9, 6:35 am)
[PATCH 1/8] kgdb: core API and gdb protocol handler, jason.wessel, (Sat Feb 9, 6:35 am)
[PATCH 2/8] pid, kgdb: add pid_max prototype, jason.wessel, (Sat Feb 9, 6:35 am)
[PATCH 4/8] kgdb: COPTIMIZE flag, jason.wessel, (Sat Feb 9, 6:35 am)
Re: [PATCH 2/8] pid, kgdb: add pid_max prototype, Christoph Hellwig, (Sat Feb 9, 10:10 am)
Re: [PATCH 3/8] kgdb, modules: Always allow module sect in ..., Christoph Hellwig, (Sat Feb 9, 10:15 am)
Re: [PATCH 4/8] kgdb: COPTIMIZE flag, Christoph Hellwig, (Sat Feb 9, 10:16 am)
Re: [PATCH 1/8] kgdb: core API and gdb protocol handler, Christoph Hellwig, (Sat Feb 9, 10:27 am)
Re: [PATCH 0/8] kgdb 2.6.25 version, Christoph Hellwig, (Sat Feb 9, 10:38 am)
Re: [PATCH 1/8] kgdb: core API and gdb protocol handler, Ray Lee, (Sat Feb 9, 12:46 pm)