[fixes for android
John Meacham <john@repetae.net>**20120213150333
 Ignore-this: cf6df59b212e3402ec21507410485270
] hunk ./rts/rts/profile.c 1
+#if defined(__WIN32__)
+#define HAVE_TIMES 0
+#else
+#define HAVE_TIMES 1
+#endif
+
hunk ./rts/rts/profile.c 9
+#if HAVE_TIMES
hunk ./rts/rts/profile.c 12
+#endif
hunk ./rts/rts/profile.c 31
-#if  defined(__WIN32__) || defined(__ARM_EABI__)
-struct tms {};
-#endif
hunk ./rts/rts/profile.c 32
+#if HAVE_TIMES
hunk ./rts/rts/profile.c 65
+#else
+
+struct profile_stack;
+void jhc_profile_push(struct profile_stack *ps) {}
+void jhc_profile_pop(struct profile_stack *ps) {}
+
+#endif
hunk ./rts/rts/profile.c 82
-#ifndef __WIN32__
+#if HAVE_TIMES
hunk ./rts/rts/rts_support.c 68
-
hunk ./rts/test/slab_test.c 11
-#include "jhc_jgc.h"
-#include "debug.c"
-#include "jhc_rts_alloc.c"
-#include "jhc_rts.c"
-#include "profile.c"
hunk ./rts/test/slab_test.c 12
-#include "slub.c"
-#include "jhc_jgc.c"
hunk ./rts/test/stableptr_test.c 11
-#include "jhc_jgc.h"
-#include "debug.c"
-#include "jhc_rts_alloc.c"
-#include "jhc_rts.c"
-#include "profile.c"
hunk ./rts/test/stableptr_test.c 12
-#include "slub.c"
-#include "jhc_jgc.c"