| OLD | NEW |
| 1 /* Declarations for caching. Typically used by remote back ends for | 1 /* Declarations for caching. Typically used by remote back ends for |
| 2 caching remote memory. | 2 caching remote memory. |
| 3 | 3 |
| 4 Copyright (C) 1992-1993, 1995, 1999-2001, 2007-2012 Free Software | 4 Copyright (C) 1992-2013 Free Software Foundation, Inc. |
| 5 Foundation, Inc. | |
| 6 | 5 |
| 7 This file is part of GDB. | 6 This file is part of GDB. |
| 8 | 7 |
| 9 This program is free software; you can redistribute it and/or modify | 8 This program is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
| 11 the Free Software Foundation; either version 3 of the License, or | 10 the Free Software Foundation; either version 3 of the License, or |
| 12 (at your option) any later version. | 11 (at your option) any later version. |
| 13 | 12 |
| 14 This program is distributed in the hope that it will be useful, | 13 This program is distributed in the hope that it will be useful, |
| 15 but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 19 matching lines...) Expand all Loading... |
| 35 | 34 |
| 36 /* Simple to call from <remote>_xfer_memory. */ | 35 /* Simple to call from <remote>_xfer_memory. */ |
| 37 | 36 |
| 38 int dcache_xfer_memory (struct target_ops *ops, DCACHE *cache, CORE_ADDR mem, | 37 int dcache_xfer_memory (struct target_ops *ops, DCACHE *cache, CORE_ADDR mem, |
| 39 gdb_byte *my, int len, int should_write); | 38 gdb_byte *my, int len, int should_write); |
| 40 | 39 |
| 41 void dcache_update (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr, | 40 void dcache_update (DCACHE *dcache, CORE_ADDR memaddr, gdb_byte *myaddr, |
| 42 int len); | 41 int len); |
| 43 | 42 |
| 44 #endif /* DCACHE_H */ | 43 #endif /* DCACHE_H */ |
| OLD | NEW |