Module Name: src
Committed By: maya
Date: Wed Jun 19 16:14:07 UTC 2019
Modified Files:
src/sys/compat/sys: siginfo.h
Log Message:
Match the regular _ksiginfo size since sys/sys/siginfo.h:1.33
"Expand siginfo_t (struct size not changed) to new values for
SIGTRAP TRAP_SCE/TRAP_SCX events."
Fixes port-mips/54309: gdb doesn't work on mips64 (32bit userland,
64bit kernel)
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/sys/siginfo.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/sys/siginfo.h
diff -u src/sys/compat/sys/siginfo.h:1.4 src/sys/compat/sys/siginfo.h:1.5
--- src/sys/compat/sys/siginfo.h:1.4 Mon Apr 28 20:23:46 2008
+++ src/sys/compat/sys/siginfo.h Wed Jun 19 16:14:07 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: siginfo.h,v 1.4 2008/04/28 20:23:46 martin Exp $ */
+/* $NetBSD: siginfo.h,v 1.5 2019/06/19 16:14:07 maya Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -72,6 +72,13 @@ struct __ksiginfo32 {
int32_t _band;
int _fd;
} _poll;
+
+ struct {
+ int _sysnum;
+ int _retval[2];
+ int _error;
+ uint64_t _args[8]; /* SYS_MAXSYSARGS */
+ } _syscall;
} _reason;
};