From: Paul Eggert Date: Fri, 27 Oct 2017 00:31:41 +0000 (-0700) Subject: Port thread.c to OpenBSD ARM X-Git-Tag: emacs-26.0.91~464 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=015f0bb2d85475bb952d6287d09b45932d7d215b;p=emacs.git Port thread.c to OpenBSD ARM Problem reported by Jeremie Courreges-Anglas (Bug#29005). * src/thread.c (main_thread): Align to GCALIGNMENT. --- diff --git a/src/thread.c b/src/thread.c index c03cdda0fae..6f12d796ff9 100644 --- a/src/thread.c +++ b/src/thread.c @@ -26,7 +26,7 @@ along with GNU Emacs. If not, see . */ #include "coding.h" #include "syssignal.h" -static struct thread_state main_thread; +static struct thread_state alignas (GCALIGNMENT) main_thread; struct thread_state *current_thread = &main_thread;