svn commit: r368661 - stable/12/sys/arm64/linux

Mitchell Horne mhorne at FreeBSD.org
Tue Dec 15 14:58:41 UTC 2020


Author: mhorne
Date: Tue Dec 15 14:58:40 2020
New Revision: 368661
URL: https://svnweb.freebsd.org/changeset/base/368661

Log:
  MFC r368458:
  arm64: fix struct l_sigaction_t layout

Modified:
  stable/12/sys/arm64/linux/linux.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/arm64/linux/linux.h
==============================================================================
--- stable/12/sys/arm64/linux/linux.h	Tue Dec 15 14:54:36 2020	(r368660)
+++ stable/12/sys/arm64/linux/linux.h	Tue Dec 15 14:58:40 2020	(r368661)
@@ -162,9 +162,9 @@ typedef void	(*l_handler_t)(l_int);
 
 typedef struct {
 	l_handler_t	lsa_handler;
-	l_sigset_t	lsa_mask;
 	l_ulong		lsa_flags;
 	l_uintptr_t	lsa_restorer;
+	l_sigset_t	lsa_mask;
 } l_sigaction_t;				/* XXX */
 
 typedef struct {


More information about the svn-src-stable mailing list