From 6d46063393dd241c0c3c70ef7b409ede8f83970c Mon Sep 17 00:00:00 2001 From: Rodrigo Kumpera Date: Thu, 30 Aug 2012 19:51:24 -0300 Subject: [PATCH] Fix mach support for arm. * mach-support-arm.c: Fix a silly thinko in mono_mach_arch_get_thread_state. --- mono/utils/mach-support-arm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/utils/mach-support-arm.c b/mono/utils/mach-support-arm.c index 9a377ff1c06..bd1c79de855 100644 --- a/mono/utils/mach-support-arm.c +++ b/mono/utils/mach-support-arm.c @@ -72,7 +72,7 @@ mono_mach_arch_get_thread_state (thread_port_t thread, thread_state_t state, mac *count = ARM_THREAD_STATE_COUNT; - ret = thread_get_state (thread, ARM_THREAD_STATE_COUNT, (thread_state_t) arch_state, count); + ret = thread_get_state (thread, ARM_THREAD_STATE, (thread_state_t) arch_state, count); return ret; } -- 2.11.4.GIT