aboutsummaryrefslogtreecommitdiffstats
path: root/target-arm/helper-android.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-arm/helper-android.c')
-rw-r--r--target-arm/helper-android.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/target-arm/helper-android.c b/target-arm/helper-android.c
index 8c203d4..d5f3b52 100644
--- a/target-arm/helper-android.c
+++ b/target-arm/helper-android.c
@@ -9,6 +9,20 @@
#include "helper-android.h"
#include "qemu-common.h"
+/* copy a string from the simulated virtual space to a buffer in QEMU */
+void vstrcpy(target_ulong ptr, char *buf, int max)
+{
+ int index;
+
+ if (buf == NULL) return;
+
+ for (index = 0; index < max; index += 1) {
+ cpu_physical_memory_read(ptr + index, (uint8_t*)buf + index, 1);
+ if (buf[index] == 0)
+ break;
+ }
+}
+
#ifdef CONFIG_TRACE
#include "android-trace.h"