blob: 823284edbda9420c9b77cde0c89a2720d428583a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
$NetBSD: patch-gdb_bsd-kvm.c,v 1.2 2022/12/04 19:04:21 he Exp $
(1) (unknown yet)
(2) +#include <sys/signal.h> part:
NetBSD/i386 5.2 has following problem without sys/signal.h
from bsd-kvm.c:36:
/usr/include/sys/signalvar.h:56: error: field 'sd_sigact' has incomplete type
/usr/include/sys/signalvar.h:59: error: 'NSIG' undeclared here (not in a function)
gmake[2]: *** [bsd-kvm.o] Error 1
(3) properly conditionalize use of <sys/user.h>
--- gdb/bsd-kvm.c.orig 2015-02-19 11:58:07.000000000 +0000
+++ gdb/bsd-kvm.c
@@ -28,7 +28,12 @@
#include "gdbthread.h"
#include <fcntl.h>
+#include <stddef.h>
#include <kvm.h>
+#define _KMEMUSER 1
+#include <sys/signal.h>
+#include <lwp.h>
+#include <sys/lwp.h>
#ifdef HAVE_NLIST_H
#include <nlist.h>
#endif
@@ -36,7 +41,10 @@
#include "readline/readline.h"
#include <sys/param.h>
#include <sys/proc.h>
+#include <sys/types.h>
+#ifdef HAVE_SYS_USER_H
#include <sys/user.h>
+#endif
#include "bsd-kvm.h"
|