~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to pstack/budbg.h

  • Committer: Brian Aker
  • Date: 2008-06-28 06:45:02 UTC
  • Revision ID: brian@tangent.org-20080628064502-x35n8579qt8xzqwg
Pstack removal. Cleanup around final my_pthread.c removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* budbg.c -- Interfaces to the generic debugging information routines.
2
 
   Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3
 
   Written by Ian Lance Taylor <ian@cygnus.com>.
4
 
 
5
 
   This file is part of GNU Binutils.
6
 
 
7
 
   This program is free software; you can redistribute it and/or modify
8
 
   it under the terms of the GNU General Public License as published by
9
 
   the Free Software Foundation; either version 2 of the License, or
10
 
   (at your option) any later version.
11
 
 
12
 
   This program is distributed in the hope that it will be useful,
13
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
   GNU General Public License for more details.
16
 
 
17
 
   You should have received a copy of the GNU General Public License
18
 
   along with this program; if not, write to the Free Software
19
 
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20
 
   02111-1307, USA.  */
21
 
 
22
 
#ifndef BUDBG_H
23
 
#define BUDBG_H
24
 
 
25
 
#include <stdio.h>
26
 
 
27
 
#ifndef BFD_TRUE_FALSE
28
 
#define boolean bfd_boolean
29
 
#define true TRUE
30
 
#define false FALSE
31
 
#endif
32
 
 
33
 
/* Routine used to read generic debugging information.  */
34
 
 
35
 
extern PTR read_debugging_info PARAMS ((bfd *, asymbol **, long));
36
 
 
37
 
/* Routine used to print generic debugging information.  */
38
 
 
39
 
extern boolean print_debugging_info PARAMS ((FILE *, PTR));
40
 
 
41
 
/* Routines used to read and write stabs information.  */
42
 
 
43
 
extern PTR start_stab PARAMS ((PTR, bfd *, boolean, asymbol **, long));
44
 
 
45
 
extern boolean finish_stab PARAMS ((PTR, PTR));
46
 
 
47
 
extern boolean parse_stab PARAMS ((PTR, PTR, int, int, bfd_vma, const char *));
48
 
 
49
 
extern boolean write_stabs_in_sections_debugging_info
50
 
  PARAMS ((bfd *, PTR, bfd_byte **, bfd_size_type *, bfd_byte **,
51
 
           bfd_size_type *));
52
 
 
53
 
/* Routines used to read and write IEEE debugging information.  */
54
 
 
55
 
extern boolean parse_ieee
56
 
  PARAMS ((PTR, bfd *, const bfd_byte *, bfd_size_type));
57
 
 
58
 
extern boolean write_ieee_debugging_info PARAMS ((bfd *, PTR));
59
 
 
60
 
/* Routine used to read COFF debugging information.  */
61
 
 
62
 
extern boolean parse_coff PARAMS ((bfd *, asymbol **, long, PTR));
63
 
 
64
 
#endif