]> granicus.if.org Git - gc/commitdiff
Fix tools/setjmp_t hang (OS X)
authorIvan Maidanski <ivmai@mail.ru>
Thu, 23 Mar 2017 00:16:12 +0000 (03:16 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 7 Apr 2017 15:18:16 +0000 (18:18 +0300)
* tools/setjmp_t.c (main): Declare "y" static variable as volatile (to
prevent reordering/optimization of y++).

tools/setjmp_t.c

index 05798c2685ebabd9af831835dae339d96c8b351d..0ed433d62ee57d452e7f4e6f04bfa73f2fc3faab 100644 (file)
@@ -78,7 +78,7 @@ int main(void)
     unsigned ps = GETPAGESIZE();
     jmp_buf b;
     register int x = (int)strlen("a");  /* 1, slightly disguised */
-    static int y = 0;
+    static volatile int y = 0;
 
     sp = (word)(&sp);
     printf("This appears to be a %s running %s\n", MACH_TYPE, OS_TYPE);