From 7171232768ab846e00032b7218b2a4ad275b6ae2 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 3 Dec 2011 18:39:43 +0000 Subject: sim: export cb_get_string for people to use The common sim code provides a useful "get_string" function which reads a C string out of the target's memory space. So rename and export it for other people to use. Signed-off-by: Mike Frysinger --- include/gdb/callback.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/gdb/callback.h') diff --git a/include/gdb/callback.h b/include/gdb/callback.h index a1f79f9..bbc5bb3 100644 --- a/include/gdb/callback.h +++ b/include/gdb/callback.h @@ -324,6 +324,9 @@ int cb_is_stdin (host_callback *, int); int cb_is_stdout (host_callback *, int); int cb_is_stderr (host_callback *, int); +/* Read a string out of the target. */ +int cb_get_string (host_callback *, CB_SYSCALL *, char *, int, unsigned long); + /* Perform a system call. */ CB_RC cb_syscall (host_callback *, CB_SYSCALL *); -- cgit v1.1