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

Mitchell Horne <[email protected]> Tue, 15 Dec 2020 14:58:41 +0000 (UTC)
Newsgroups gmane.os.freebsd.devel.cvs
Message-ID <202012151458.0BFEwfuG088080__27234.7232488514$1608044329$gmane$org@repo.freebsd.org>
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 {
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"