diff options
author | Petr Machata <pmachata@redhat.com> | 2014-01-10 20:02:12 +0100 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-08-22 20:38:24 +0900 |
commit | 8d1dc2a818ecc9ec5c777691b55bde4e62e6d5b4 (patch) | |
tree | 6f48d85c367e3fa4c2f0fa600f0c09ef70e5becf /backend.h | |
parent | a12d161749c556abf3d342896cc8d4dc1f41a1ca (diff) | |
download | ltrace-8d1dc2a818ecc9ec5c777691b55bde4e62e6d5b4.tar.gz ltrace-8d1dc2a818ecc9ec5c777691b55bde4e62e6d5b4.tar.bz2 ltrace-8d1dc2a818ecc9ec5c777691b55bde4e62e6d5b4.zip |
Type umovebytes properly
Diffstat (limited to 'backend.h')
-rw-r--r-- | backend.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -171,7 +171,8 @@ void os_ltrace_exiting(void); /* Should copy COUNT bytes from address ADDR of process PROC to local * buffer BUF. */ -size_t umovebytes(struct process *proc, void *addr, void *buf, size_t count); +size_t umovebytes(struct process *proc, arch_addr_t addr, + void *buf, size_t count); /* Find out an address of symbol SYM in process PROC, and return. * Returning NULL delays breakpoint insertion and enables heaps of |