Changeset ed9122e in rtems


Ignore:
Timestamp:
03/31/04 04:56:43 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
492bb09
Parents:
162ffb4
Message:

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • m68k-stub.c: Convert to using c99 fixed size types.
Location:
c/src/lib/libbsp/m68k/shared/gdbstub
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/shared/gdbstub/ChangeLog

    r162ffb4 red9122e  
     12004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * m68k-stub.c: Convert to using c99 fixed size types.
     4
    152003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • c/src/lib/libbsp/m68k/shared/gdbstub/m68k-stub.c

    r162ffb4 red9122e  
    10741074              if (remote_debug)
    10751075                  printf("frame at 0x%x has pc=0x%x, except#=%d\n",
    1076                          (unsigned32) frame,
    1077                          (unsigned32) frame->exceptionPC,
    1078                          (unsigned32) frame->exceptionVector);
     1076                         (uint32_t) frame,
     1077                         (uint32_t) frame->exceptionPC,
     1078                         (uint32_t) frame->exceptionVector);
    10791079              if (frame->exceptionPC == newPC) break;  /* bingo! a match */
    10801080              /*
     
    11151115                      if (remote_debug)
    11161116                          printf("frame at 0x%x has pc=0x%x, except#=%d\n",
    1117                                  (unsigned32) frame,
     1117                                 (uint32_t) frame,
    11181118                                 frame->exceptionPC,
    11191119                                 frame->exceptionVector);
Note: See TracChangeset for help on using the changeset viewer.