Changeset 1f7cb3a in mainline for kernel/arch/ia32/src/interrupt.c


Ignore:
Timestamp:
2009-02-14T20:14:38Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74bcf5e
Parents:
6c1f763
Message:

Get rid of CONFIG_DEBUG_ALLREGS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/interrupt.c

    r6c1f763 r1f7cb3a  
    7878        printf("%%cs=%#lx,flags=%#lx\n", istate->cs, istate->eflags);
    7979        printf("%%eax=%#lx, %%ecx=%#lx, %%edx=%#lx, %%esp=%p\n", istate->eax, istate->ecx, istate->edx, &istate->stack[0]);
    80 #ifdef CONFIG_DEBUG_ALLREGS
    81         printf("%%esi=%#lx, %%edi=%#lx, %%ebp=%#lx, %%ebx=%#lx\n", istate->esi, istate->edi, istate->ebp, istate->ebx);
    82 #endif
    8380        printf("stack: %#lx, %#lx, %#lx, %#lx\n", istate->stack[0], istate->stack[1], istate->stack[2], istate->stack[3]);
    8481        printf("       %#lx, %#lx, %#lx, %#lx\n", istate->stack[4], istate->stack[5], istate->stack[6], istate->stack[7]);
Note: See TracChangeset for help on using the changeset viewer.