From: Sir Richard Date: Tue, 23 Nov 2010 16:35:13 +0000 (+0000) Subject: [CRT]: Define JBLEN and JBTYPE for ARM, based on the Windows ARM CRT source code... X-Git-Tag: backups/ros-branch-0_3_13@51035~464 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=af01d7d12960fbaa438eded182d197dcdee77a80 [CRT]: Define JBLEN and JBTYPE for ARM, based on the Windows ARM CRT source code (public). svn path=/trunk/; revision=49729 --- diff --git a/reactos/include/crt/setjmp.h b/reactos/include/crt/setjmp.h index 2a64a9b7c17..002e525c050 100644 --- a/reactos/include/crt/setjmp.h +++ b/reactos/include/crt/setjmp.h @@ -129,6 +129,15 @@ extern "C" { SETJMP_FLOAT128 Xmm15; } _JUMP_BUFFER; +#elif defined(_M_ARM) + +#define _JBLEN 11 +#define _JBTYPE int + +#else + +#error Define Setjmp for this architecture! + #endif #ifndef _JMP_BUF_DEFINED