emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 015f0bb: Port thread.c to OpenBSD ARM


From: Paul Eggert
Subject: [Emacs-diffs] emacs-26 015f0bb: Port thread.c to OpenBSD ARM
Date: Thu, 26 Oct 2017 20:32:35 -0400 (EDT)

branch: emacs-26
commit 015f0bb2d85475bb952d6287d09b45932d7d215b
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Port thread.c to OpenBSD ARM
    
    Problem reported by Jeremie Courreges-Anglas (Bug#29005).
    * src/thread.c (main_thread): Align to GCALIGNMENT.
---
 src/thread.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/thread.c b/src/thread.c
index c03cdda..6f12d79 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -26,7 +26,7 @@ along with GNU Emacs.  If not, see 
<https://www.gnu.org/licenses/>.  */
 #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;
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]