From 8c9cdfe810a01faefaaff5c92032904dafafcf0d Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Mon, 19 Jun 2000 18:59:07 +0000 Subject: * remote-nindy.c (nindy_fetch_word, nindy_store_word): Removed (nindy_xfer_inferior_memory): Use dcache_xfer_memory() instead of breaking transfer into chunks and using nindy_fetch_word() and nindy_store_word(). * remote-bug.c (bug_xfer_memory): Use dcache_xfer_memory() instead of breaking transfer into chunks and using gr_fetch_word() and gr_store_word(). * remote.c (remote_fetch_word, remote_store_word): Removed. * remote-utils.h (gr_fetch_word, gr_store_word): Removed. * remote-utils.c (gr_fetch_word, gr_store_word): Removed. * dcache.h (dcache_fetch, dcache_poke, dcache_poke_block): Removed. * dcache.c (dcache_fetch, dcache_poke): Removed. --- gdb/remote-utils.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'gdb/remote-utils.c') diff --git a/gdb/remote-utils.c b/gdb/remote-utils.c index 457d7b1..de0cbeb 100644 --- a/gdb/remote-utils.c +++ b/gdb/remote-utils.c @@ -618,27 +618,6 @@ gr_prepare_to_store () /* Do nothing, since we assume we can store individual regs */ } -/* Read a word from remote address ADDR and return it. - * This goes through the data cache. - */ -int -gr_fetch_word (addr) - CORE_ADDR addr; -{ - return dcache_fetch (gr_get_dcache (), addr); -} - -/* Write a word WORD into remote address ADDR. - This goes through the data cache. */ - -void -gr_store_word (addr, word) - CORE_ADDR addr; - int word; -{ - dcache_poke (gr_get_dcache (), addr, word); -} - void _initialize_sr_support () { -- cgit v1.1