Add/adjust casts in gdbserver's proc-service
The casts are required because ps_pd{read,write} must respect a fixed interface. gdb/gdbserver/ChangeLog: * proc-service.c (ps_pdread): Add/adjust casts. (ps_pdwrite): Add/adjust casts.
This commit is contained in:
parent
d2242e347a
commit
b42945fd28
@ -1,3 +1,8 @@
|
||||
2015-10-29 Simon Marchi <simon.marchi@ericsson.com>
|
||||
|
||||
* proc-service.c (ps_pdread): Add/adjust casts.
|
||||
(ps_pdwrite): Add/adjust casts.
|
||||
|
||||
2015-10-29 Simon Marchi <simon.marchi@polymtl.ca>
|
||||
|
||||
* server.c (handle_search_memory_1): Cast return value of
|
||||
|
@ -80,7 +80,7 @@ ps_err_e
|
||||
ps_pdread (gdb_ps_prochandle_t ph, psaddr_t addr,
|
||||
gdb_ps_read_buf_t buf, gdb_ps_size_t size)
|
||||
{
|
||||
read_inferior_memory ((unsigned long) addr, buf, size);
|
||||
read_inferior_memory ((CORE_ADDR) addr, (gdb_byte *) buf, size);
|
||||
return PS_OK;
|
||||
}
|
||||
|
||||
@ -90,7 +90,8 @@ ps_err_e
|
||||
ps_pdwrite (gdb_ps_prochandle_t ph, psaddr_t addr,
|
||||
gdb_ps_write_buf_t buf, gdb_ps_size_t size)
|
||||
{
|
||||
if (write_inferior_memory ((unsigned long) addr, buf, size) != 0)
|
||||
if (write_inferior_memory ((CORE_ADDR) addr, (const gdb_byte *) buf, size)
|
||||
!= 0)
|
||||
return PS_ERR;
|
||||
return PS_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user