Debug output tweaks in the Linux target backends
[deliverable/binutils-gdb.git] / gdb / gdbserver / gdb_proc_service.h
1 /* <proc_service.h> replacement for systems that don't have it.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #ifndef GDB_PROC_SERVICE_H
20 #define GDB_PROC_SERVICE_H
21
22 #include <sys/types.h>
23
24 #ifdef HAVE_PROC_SERVICE_H
25
26 /* glibc's proc_service.h doesn't wrap itself with extern "C". Need
27 to do it ourselves. */
28 EXTERN_C_PUSH
29
30 #include <proc_service.h>
31
32 EXTERN_C_POP
33
34 #else
35
36 #ifdef HAVE_SYS_PROCFS_H
37 #include <sys/procfs.h>
38 #endif
39
40 /* Not all platforms bring in <linux/elf.h> via <sys/procfs.h>. If
41 <sys/procfs.h> wasn't enough to find elf_fpregset_t, try the kernel
42 headers also (but don't if we don't need to). */
43 #ifndef HAVE_ELF_FPREGSET_T
44 # ifdef HAVE_LINUX_ELF_H
45 # include <linux/elf.h>
46 # endif
47 #endif
48
49 EXTERN_C_PUSH
50
51 typedef enum
52 {
53 PS_OK, /* Success. */
54 PS_ERR, /* Generic error. */
55 PS_BADPID, /* Bad process handle. */
56 PS_BADLID, /* Bad LWP id. */
57 PS_BADADDR, /* Bad address. */
58 PS_NOSYM, /* Symbol not found. */
59 PS_NOFREGS /* FPU register set not available. */
60 } ps_err_e;
61
62 #ifndef HAVE_LWPID_T
63 typedef unsigned int lwpid_t;
64 #endif
65
66 #ifndef HAVE_PSADDR_T
67 typedef void *psaddr_t;
68 #endif
69
70 #ifndef HAVE_PRGREGSET_T
71 typedef elf_gregset_t prgregset_t;
72 #endif
73
74 /* This type is opaque in this interface. It's defined by the user of
75 libthread_db. GDB's version is defined below. */
76 struct ps_prochandle;
77
78
79 /* Read or write process memory at the given address. */
80 extern ps_err_e ps_pdread (struct ps_prochandle *,
81 psaddr_t, void *, size_t);
82 extern ps_err_e ps_pdwrite (struct ps_prochandle *,
83 psaddr_t, const void *, size_t);
84 extern ps_err_e ps_ptread (struct ps_prochandle *,
85 psaddr_t, void *, size_t);
86 extern ps_err_e ps_ptwrite (struct ps_prochandle *,
87 psaddr_t, const void *, size_t);
88
89
90 /* Get and set the given LWP's general or FPU register set. */
91 extern ps_err_e ps_lgetregs (struct ps_prochandle *,
92 lwpid_t, prgregset_t);
93 extern ps_err_e ps_lsetregs (struct ps_prochandle *,
94 lwpid_t, const prgregset_t);
95 extern ps_err_e ps_lgetfpregs (struct ps_prochandle *,
96 lwpid_t, prfpregset_t *);
97 extern ps_err_e ps_lsetfpregs (struct ps_prochandle *,
98 lwpid_t, const prfpregset_t *);
99
100 /* Return the PID of the process. */
101 extern pid_t ps_getpid (struct ps_prochandle *);
102
103 /* Fetch the special per-thread address associated with the given LWP.
104 This call is only used on a few platforms (most use a normal register).
105 The meaning of the `int' parameter is machine-dependent. */
106 extern ps_err_e ps_get_thread_area (const struct ps_prochandle *,
107 lwpid_t, int, psaddr_t *);
108
109
110 /* Look up the named symbol in the named DSO in the symbol tables
111 associated with the process being debugged, filling in *SYM_ADDR
112 with the corresponding run-time address. */
113 extern ps_err_e ps_pglobal_lookup (struct ps_prochandle *,
114 const char *object_name,
115 const char *sym_name,
116 psaddr_t *sym_addr);
117
118
119 /* Stop or continue the entire process. */
120 extern ps_err_e ps_pstop (struct ps_prochandle *);
121 extern ps_err_e ps_pcontinue (struct ps_prochandle *);
122
123 /* Stop or continue the given LWP alone. */
124 extern ps_err_e ps_lstop (struct ps_prochandle *, lwpid_t);
125 extern ps_err_e ps_lcontinue (struct ps_prochandle *, lwpid_t);
126
127 /* The following are only defined in/called by Solaris. */
128
129 /* Get size of extra register set. */
130 extern ps_err_e ps_lgetxregsize (struct ps_prochandle *ph,
131 lwpid_t lwpid, int *xregsize);
132 /* Get extra register set. */
133 extern ps_err_e ps_lgetxregs (struct ps_prochandle *ph, lwpid_t lwpid,
134 caddr_t xregset);
135 extern ps_err_e ps_lsetxregs (struct ps_prochandle *ph, lwpid_t lwpid,
136 caddr_t xregset);
137
138 /* Log a message (sends to gdb_stderr). */
139 extern void ps_plog (const char *fmt, ...);
140
141 EXTERN_C_POP
142
143 #endif /* HAVE_PROC_SERVICE_H */
144
145 /* Structure that identifies the target process. */
146 struct ps_prochandle
147 {
148 /* We don't need to track anything. All context is served from the
149 current inferior. */
150 };
151
152 #endif /* gdb_proc_service.h */
This page took 0.047832 seconds and 4 git commands to generate.