OSDN Git Service

bc89b3666111e02d277bd36ec41b741ad20ea64b
[pf3gnuchains/pf3gnuchains3x.git] / gdb / MAINTAINERS
1                         GDB Maintainers
2
3
4                         Blanket Write Privs
5                            (alphabetic)
6
7 Jim Blandy                      jimb@cygnus.com
8 Andrew Cagney                   ac131313@cygnus.com
9 J.T. Conklin                    jtc@redback.com
10 Fred Fish                       fnf@ninemoons.com
11 Mark Kettenis                   kettenis@gnu.org
12 Peter Schauer                   Peter.Schauer@regent.e-technik.tu-muenchen.de
13 Stan Shebs                      shebs@apple.com
14 Michael Snyder                  msnyder@cygnus.com
15
16
17                         Various Maintainers
18
19 Note individuals who maintain parts of the debugger need approval to
20 check in changes outside of the immediate domain that they maintain.
21
22 If there is no maintainer for a given domain then the responsibility
23 falls to the head maintainer.
24
25 If there are several maintainers for a given domain then
26 responsibility falls to the first maintainer.  The first maintainer is
27 free to devolve that responsibility among the other maintainers.
28
29
30                         The Obvious Fix Rule
31
32 All maintainers listed in this file are allowed to check in obvious
33 fixes.
34
35 An "obvious fix" means that there is no possibility that anyone will
36 disagree with the change.  Something like bypassing an interface will
37 result in instantaneous and loud complaints.
38
39 A good mental test is "will the person who hates my work the most be
40 able to find fault with the change" - if so, then it's not obvious and
41 needs to be posted first. :-)
42
43
44 Target/Architecture:
45
46 Generic ISA (Instruction Set Architecture) issues, API variants, CPU
47 variants.  *-tdep.c. The Target/Architecture maintainer works with the
48 host maintainer when resolving build issues.  The Target/Architecture
49 maintainer works with the native maintainer when resolving API issues.
50
51         a29k            --target=a29k-amd-udi -Werror
52                         Maintenance only
53
54         alpha           --target=alpha-dec-osf4.0a -Werror
55                         Maintenance only
56
57         arc             --target=arc-elf ,-Werror
58                         Maintenance only
59
60         arm             --target=arm-coff,arm-elf,arm-pe -w
61                         Fernando Nasser         fnasser@cygnus.com
62                         Scott Bambrough         scottb@netwinder.org
63
64         d10v            --target=d10v-elf ,-Werror
65                         Andrew Cagney           cagney@cygnus.com
66
67         d30v            --target=d30v-elf ,-Werror
68                         David Taylor            taylor@cygnus.com
69
70         djgpp           --target=i586-pc-msdosdjgpp ,-Werror
71                         (See native and host)
72
73         fr30            --target=fr30-elf -Werror
74                         Maintenance only
75
76         h8300           --target=h8300hms -Werror
77                         Maintenance only
78
79         h8500           --target=h8500hms -Werror
80                         Maintenance only
81
82         i386            --target=i386-elf,i386-aout ,-Werror
83                         Mark Kettenis           kettenis@gnu.org
84
85         i960            --target=i960-coff ,-Werror
86                         Maintenance only
87
88         ia64            --target=ia64-linux ,-Werror
89                         Kevin Buettner          kevinb@cygnus.com
90
91         m32r            --target=m32r-elf -Werror
92                         Michael Snyder          msnyder@cygnus.com
93
94         m68hc11         --target=m68hc11-elf ,-Werror
95                         Stephane Carrez         Stephane.Carrez@worldnet.fr
96
97         m68k            --target=m68k-aout,m68k-coff,m68k-elf ,-Werror
98                         Maintenance only
99
100         m88k            --target=m88k ,-Werror
101                         Known problem in 5.1
102                         Maintenance only
103
104         mcore           --target=mcore-elf,mcore-pe ,-Werror
105                         Maintenance only
106
107         mips            --target=mips-elf,mips64-elf ,-Werror
108                         Andrew Cagney           cagney@cygnus.com
109
110         mn10200         --target=mn10200-elf ,-Werror
111                         Maintenance only
112
113         mn10300         --target=mn10300-elf ,-Werror
114                         Maintenance only
115
116         ns32k           --target=ns32k-netbsd ,-Werror
117                         Maintenance only
118
119         pa              (--target=hppa1.1-hp-proelf broken)
120                         Maintenance only
121
122         powerpc         --target=powerpc-eabi,powerpcle-eabi ,-Werror
123                         Kevin Buettner          kevinb@cygnus.com
124                         Nick Duffek             nsd@cygnus.com
125
126         rs6000          --target=rs6000-ibm-aix3.2,rs6000-ibm-aix4.1 ,-Werror
127                         (see rs6000 native and ppc target)
128
129         sh              --target=sh-hms,sh-elf ,-Werror
130                         Elena Zannoni           ezannoni@cygnus.com
131
132         sparc           --target=sparc-elf,sparc64-elf ,-Werror
133                         David Taylor            taylor@cygnus.com
134
135         tic80           (--target=tic80-coff broken)
136                         Maintenance only
137
138         v850            --target=v850-elf ,-Werror
139                         Maintenance only
140
141         vax             --target=vax-dec-vms5.5 ,-Werror
142                         Maintenance only
143
144         w65             (--target=w65 broken)
145                         Maintenance only
146
147         z8k             (--target=z8k-coff broken)
148                         Known problem in 5.1
149                         Maintenance only
150
151 All maintainers can make arbitrary changes to OBSOLETE targets.
152
153 All maintainers can make mechanical (params, spelling, indentation,
154 multi-arch, -W..., ....) changes to ``maintenance only'' targets.
155 Please sanity check the change by compiling with one of the listed
156 targets.
157
158 The GAWK segment:
159
160   awk < "${maintainers}" '
161   $2 ~ /--target=.*/ {
162     targets = gensub (/^.*--target=/, "", 1, $2)
163     warnings = gensub (/[)]*$/, "", 1, $3)
164     split (targets, targ, /,/)
165     for (i in targ) {
166         print targ[i], warnings
167     }
168   }'
169
170 can be used to generate a full list of --target=
171 --enable-gdb-build-warning= pairs.
172
173
174
175 Host/Native:
176
177 The Native maintainer is responsible for target specific native
178 support - typically shared libraries and quirks to procfs/ptrace/...
179 The Native maintainer works with the Arch and Core maintainers when
180 resolving more generic problems.
181
182 The host maintainer ensures that gdb (including mmalloc) can be built
183 as a cross debugger on their platform.
184
185 AIX                     Peter Schauer           Peter.Schauer@regent.e-technik.tu-muenchen.de
186                         Kevin Buettner          kevinb@cygnus.com
187
188 djgpp native            Eli Zaretskii           eliz@gnu.org
189                         DJ Delorie              dj@cygnus.com
190 MS Windows (NT, CE, '00, 9x, Me) host & native
191                         Chris Faylor            cgf@cygnus.com
192 GNU/Linux/x86 native & host
193                         Mark Kettenis           kettenis@gnu.org
194                         Jim Blandy              jimb@cygnus.com
195 GNU/Linux PPC native    Kevin Buettner          kevinb@cygnus.com
196 GNU/Linux MIPS native & host
197                         Daniel Jacobowitz       dan@debian.org
198 FreeBSD native & host   Mark Kettenis           kettenis@gnu.org
199                         David O'Brien           obrien@freebsd.org
200 hurd native             Mark Kettenis           kettenis@gnu.org
201 NetBSD native & host    J.T. Conklin            jtc@redback.com
202 SCO/Unixware            Nick Duffek             nsd@cygnus.com
203                         Robert Lipe             rjl@sco.com
204 GNU/Linux ARM native    Scott Bambrough         scottb@netwinder.org
205 Solaris/x86 native & host (devolved)
206                         Nick Duffek             nsd@cygnus.com
207                         Peter Schauer           Peter.Schauer@regent.e-technik.tu-muenchen.de
208 Solaris/SPARC native & host (devolved)
209                         David Taylor            taylor@cygnus.com
210                         Michael Snyder          msnyder@cygnus.com
211 Mac OS X                Klee Dienes             kdienes@apple.com
212                         Jim Ingham              jingham@apple.com
213
214
215
216 Core: Generic components used by all of GDB
217
218 generic arch support    Andrew Cagney           cagney@cygnus.com
219                         Any host/target maintainer can add to
220                         gdbarch.{c,h,sh}.  Send tricky ones to cagney.
221 target vector           Andrew Cagney           cagney@cygnus.com
222 main (main.c, top.c)    Elena Zannoni           ezannoni@cygnus.com
223 event loop              Elena Zannoni           ezannoni@cygnus.com
224
225 generic symtabs         Jim Blandy              jimb@cygnus.com
226                         Elena Zannoni           ezannoni@cygnus.com
227   dwarf readers         Jim Blandy              jimb@cygnus.com
228                         Elena Zannoni           ezannoni@cygnus.com
229   elf reader            Jim Blandy              jimb@cygnus.com
230                         Elena Zannoni           ezannoni@cygnus.com
231   stabs reader          Jim Blandy              jimb@cygnus.com
232                         Elena Zannoni           ezannoni@cygnus.com
233   coff reader           Philippe De Muyter      phdm@macqel.be
234   xcoff reader          Any maintainer can modify this; please send tricky
235                         ones to Kevin Buettner <kevinb@cygnus.com>
236   linespec              Jim Blandy              jimb@cygnus.com
237                         Elena Zannoni           ezannoni@cygnus.com
238                         Fernando Nasser         fnasser@cygnus.com
239
240 tracing bytecode stuff  Jim Blandy              jimb@cygnus.com
241 tracing                 Michael Snyder          msnyder@cygnus.com
242 threads                 Michael Snyder          msnyder@cygnus.com
243                         Mark Kettenis           kettenis@gnu.org
244 breakpoints             Michael Snyder          msnyder@cygnus.com
245                         Jim Blandy              jimb@cygnus.com
246 language support        David Taylor            taylor@cygnus.com
247   Java support (devolved)
248                         Per Bothner             per@bothner.com
249                         Anthony Green           green@cygnus.com
250   Objective-C/C++       Klee Dienes             kdienes@apple.com
251                         Jim Ingham              jimgham@apple.com
252   Pascal support        Pierre Muller           muller@sourceware.cygnus.com
253 expression eval         David Taylor            taylor@cygnus.com
254 defs.h                  David Taylor            taylor@cygnus.com
255 utils.c                 David Taylor            taylor@cygnus.com
256 Scheme support          Jim Blandy              jimb@cygnus.com
257
258 shared libs (devolved)  Jim Blandy              jimb@cygnus.com
259                         Kevin Buettner          kevinb@cygnus.com
260   xcoffsolib            Peter Schauer           Peter.Schauer@regent.e-technik.tu-muenchen.de
261
262 remote.c                Andrew Cagney           cagney@cygnus.com
263                         J.T. Conklin            jtc@redback.com
264 include/remote-sim.h, remote-sim.c
265                         Andrew Cagney           cagney@cygnus.com
266 sds protocol            Fernando Nasser         fnasser@cygnus.com
267 rdi/adp protocol        Fernando Nasser         fnasser@cygnus.com
268 documentation           Eli Zaretskii           eliz@gnu.org
269 testsuite               Fernando Nasser         fnasser@cygnus.com
270   config                Mark Salter             msalter@redhat.com
271   lib                   Mark Salter             msalter@redhat.com
272   gdbtk (gdb.gdbtk)     Keith Seitz             keiths@redhat.com
273   c++ (gdb.c++)         Michael Chastain        chastain@redhat.com
274   mi tests (gdb.mi)     Elena Zannoni           ezannoni@redhat.com
275                         Andrew Cagney           cagney@redhat.com
276   stabs (gdb.satbs)     Elena Zannoni           ezannoni@redhat.com
277   threads (gdb.threads) Michael Snyder          msnyder@redhat.com
278   trace (gdb.trace)     Michael Snyder          msnyder@redhat.com
279   hp tests (gdb.hp)     (vacant)
280   Java tests (gdb.java) Anthony Green           green@cygnus.com
281 Kernel Object Display   Fernando Nasser         fnasser@cygnus.com
282 dcache.c                J.T. Conklin            jtc@redback.com
283
284
285 UI: External (user) interfaces.
286
287 command interpreter     Fernando Nasser         fnasser@cygnus.com
288 gdbtk (c & tcl)         Jim Ingham              jingham@apple.com
289                         Fernando Nasser         fnasser@cygnus.com
290                         Keith Seitz             keiths@cygnus.com
291 libgui (w/foundry, sn)  Jim Ingham              jingham@apple.com
292                         Keith Seitz             keiths@redhat.com
293 mi (gdb/mi)             Andrew Cagney           cagney@cygnus.com
294                         Elena Zannoni           ezannoni@cygnus.com
295                         Fernando Nasser         fnasser@cygnus.com
296 tui                     (vacant)
297                         Technical Contact Point wdb@cup.hp.com
298
299
300 Misc:
301
302 Web pages.              Jim Kingdon             jkingdon@engr.sgi.com  ++
303                         (anyone can edit; kingdon is just lead maintainer)
304
305 Makefile.in, configure* ALL
306
307 mmalloc/                ALL Host maintainers
308
309 sim/                    See sim/MAINTAINERS, co-ordinated by:
310                         Frank Ch. Eigler        fche@cygnus.com
311
312 readline/               Master version: ftp://ftp.cwru.edu/pub/bash/
313                         Elena Zannoni           ezannoni@cygnus.com
314                         Host maintainers (host dependant parts)
315                         (but get your changes into the master version)
316
317
318
319                         Write After Approval
320                            (alphabetic)
321
322 To get recommended for the Write After Approval list you need a valid
323 FSF assignment and have submitted one good patch.
324
325 David Anderson                                  davea@sgi.com
326 Philip Blundell                                 philb@gnu.org
327 Joel Brobecker                                  brobecker@act-europe.fr
328 Michael Chastain                                chastain@redhat.com
329 Nick Clifton                                    nickc@cygnus.com
330 Orjan Friberg                                   orjanf@axis.com
331 Paul Hilfinger                                  hilfinger@gnat.com
332 Matt Hiller                                     hiller@redhat.com
333 Kazu Hirata                                     kazu@hxi.com
334 Jeff Holcomb                                    jeffh@redhat.com
335 Don Howard                                      dhoward@redhat.com
336 Martin Hunt                                     hunt@redhat.com
337 Daniel Jacobowitz                               dan@debian.org
338 Andreas Jaeger                                  aj@suse.de
339 Geoff Keating                                   geoffk@redhat.com
340 Jim Kingdon                                     jkingdon@engr.sgi.com  ++
341 Jonathan Larmour                                jlarmour@redhat.co.uk
342 H.J. Lu                                         hjl@lucon.org
343 Glen McCready                                   gkm@cygnus.com
344 Jason Molenda                                   jsm@cygnus.com
345 Pierre Muller                                   muller@sourceware.cygnus.com
346 Alexandre Oliva                                 aoliva@redhat.com
347 Mark Salter                                     msalter@redhat.com
348 Keith Seitz                                     keiths@cygnus.com
349 David Smith                                     dsmith@redhat.com
350 Stephen P. Smith                                ischis2@home.com
351 Gary Thomas                                     gthomas@redhat.com
352 Tom Tromey                                      tromey@cygnus.com
353
354
355
356                         Past Maintainers
357
358 Jimmy Guo (gdb.hp, tui)                         guo@cup.hp.com
359 Jeff Law (hppa)                                 law@cygnus.com
360 Daniel Berlin (C++ support)                     dan@cgsoftware.com
361
362
363 Folks that have been caught up in a paper trail:
364
365 Jim Kingdon                                     jkingdon@engr.sgi.com
366 Chris G. Demetriou                              cgd@sibyte.com
367
368 --
369
370 (*) Indicates folks that don't have a Kerberos/SSH account in the GDB
371 group.