Re: [PATCH v4] rtems-debugger: Fixed 32bit pointers

2021-05-06 Thread Gedare Bloom
On Thu, May 6, 2021 at 10:13 AM Joel Sherrill wrote: > > > > On Wed, May 5, 2021 at 12:35 AM Gedare Bloom wrote: >> >> On Tue, May 4, 2021 at 1:34 PM Stephen Clark >> wrote: >> > >> > Using 32bit types like uint32_t for pointers creates issues on 64 bit >> > architectures like AArch64. Replaced

Re: [PATCH v4] rtems-debugger: Fixed 32bit pointers

2021-05-06 Thread Joel Sherrill
On Wed, May 5, 2021 at 12:35 AM Gedare Bloom wrote: > On Tue, May 4, 2021 at 1:34 PM Stephen Clark > wrote: > > > > Using 32bit types like uint32_t for pointers creates issues on 64 bit > > architectures like AArch64. Replaced occurrences of these with uintptr_t, > > which will work for both 32

Re: [PATCH v4] rtems-debugger: Fixed 32bit pointers

2021-05-04 Thread Gedare Bloom
On Tue, May 4, 2021 at 1:34 PM Stephen Clark wrote: > > Using 32bit types like uint32_t for pointers creates issues on 64 bit > architectures like AArch64. Replaced occurrences of these with uintptr_t, > which will work for both 32 and 64 bit architectures. Added hex_decode_addr > function to rtem

[PATCH v4] rtems-debugger: Fixed 32bit pointers

2021-05-04 Thread Stephen Clark
Using 32bit types like uint32_t for pointers creates issues on 64 bit architectures like AArch64. Replaced occurrences of these with uintptr_t, which will work for both 32 and 64 bit architectures. Added hex_decode_addr function to rtems-debugger. --- .../rtems/debugger/rtems-debugger-server.h