Changeset f4c2b6a in mainline for kernel/arch/mips32/src/debugger.c


Ignore:
Timestamp:
2008-06-03T14:59:48Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4fb51
Parents:
b63f8569
Message:

reflect changes in generic code
proper formatting directives
coding style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/debugger.c

    rb63f8569 rf4c2b6a  
    153153
    154154        /* Check, that the breakpoints do not conflict */
    155         for (i=0; i<BKPOINTS_MAX; i++) {
     155        for (i = 0; i < BKPOINTS_MAX; i++) {
    156156                if (breakpoints[i].address == (uintptr_t)argv->intval) {
    157157                        printf("Duplicate breakpoint %d.\n", i);
     
    315315                /* Reinst only breakpoint */
    316316                if ((breakpoints[i].flags & BKPOINT_REINST) \
    317                     && (fireaddr ==breakpoints[i].address+sizeof(unative_t))) {
     317                    && (fireaddr == breakpoints[i].address + sizeof(unative_t))) {
    318318                        cur = &breakpoints[i];
    319319                        break;
Note: See TracChangeset for help on using the changeset viewer.