Update old fashioned function prototypes.
Signed-off-by: Stefan Weil <weil@mail.berlios.de> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5511 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
49918a752b
commit
3a742b7643
20
disas.c
20
disas.c
@ -14,11 +14,8 @@ struct syminfo *syminfos = NULL;
|
|||||||
/* Get LENGTH bytes from info's buffer, at target address memaddr.
|
/* Get LENGTH bytes from info's buffer, at target address memaddr.
|
||||||
Transfer them to myaddr. */
|
Transfer them to myaddr. */
|
||||||
int
|
int
|
||||||
buffer_read_memory (memaddr, myaddr, length, info)
|
buffer_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
|
||||||
bfd_vma memaddr;
|
struct disassemble_info *info)
|
||||||
bfd_byte *myaddr;
|
|
||||||
int length;
|
|
||||||
struct disassemble_info *info;
|
|
||||||
{
|
{
|
||||||
if (memaddr < info->buffer_vma
|
if (memaddr < info->buffer_vma
|
||||||
|| memaddr + length > info->buffer_vma + info->buffer_length)
|
|| memaddr + length > info->buffer_vma + info->buffer_length)
|
||||||
@ -46,10 +43,7 @@ target_read_memory (bfd_vma memaddr,
|
|||||||
/* Print an error message. We can assume that this is in response to
|
/* Print an error message. We can assume that this is in response to
|
||||||
an error return from buffer_read_memory. */
|
an error return from buffer_read_memory. */
|
||||||
void
|
void
|
||||||
perror_memory (status, memaddr, info)
|
perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info)
|
||||||
int status;
|
|
||||||
bfd_vma memaddr;
|
|
||||||
struct disassemble_info *info;
|
|
||||||
{
|
{
|
||||||
if (status != EIO)
|
if (status != EIO)
|
||||||
/* Can't happen. */
|
/* Can't happen. */
|
||||||
@ -69,9 +63,7 @@ perror_memory (status, memaddr, info)
|
|||||||
addresses). */
|
addresses). */
|
||||||
|
|
||||||
void
|
void
|
||||||
generic_print_address (addr, info)
|
generic_print_address (bfd_vma addr, struct disassemble_info *info)
|
||||||
bfd_vma addr;
|
|
||||||
struct disassemble_info *info;
|
|
||||||
{
|
{
|
||||||
(*info->fprintf_func) (info->stream, "0x%" PRIx64, addr);
|
(*info->fprintf_func) (info->stream, "0x%" PRIx64, addr);
|
||||||
}
|
}
|
||||||
@ -79,9 +71,7 @@ generic_print_address (addr, info)
|
|||||||
/* Just return the given address. */
|
/* Just return the given address. */
|
||||||
|
|
||||||
int
|
int
|
||||||
generic_symbol_at_address (addr, info)
|
generic_symbol_at_address (bfd_vma addr, struct disassemble_info *info)
|
||||||
bfd_vma addr;
|
|
||||||
struct disassemble_info * info;
|
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user