Imported Upstream version 0.7.2
[platform/upstream/ltrace.git] / common.h
1 /*
2  * This file is part of ltrace.
3  * Copyright (C) 2011,2012 Petr Machata, Red Hat Inc.
4  * Copyright (C) 2010 Joe Damato
5  * Copyright (C) 2009 Juan Cespedes
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * 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., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  */
22
23 #ifndef COMMON_H
24 #define COMMON_H
25
26 #include <config.h>
27
28 #include <sys/types.h>
29 #include <sys/time.h>
30 #include <stdio.h>
31
32 #include "ltrace.h"
33 #include "defs.h"
34 #include "dict.h"
35 #include "sysdep.h"
36 #include "debug.h"
37 #include "ltrace-elf.h"
38 #include "read_config_file.h"
39 #include "proc.h"
40 #include "forward.h"
41
42 #if defined HAVE_LIBSUPC__ || defined HAVE_LIBSTDC__
43 # define USE_CXA_DEMANGLE
44 #endif
45 #if defined HAVE_LIBIBERTY || defined USE_CXA_DEMANGLE
46 # define USE_DEMANGLE
47 #endif
48
49 extern char * command;
50
51 extern int exiting;  /* =1 if we have to exit ASAP */
52
53 typedef struct Function Function;
54 struct Function {
55         const char * name;
56         struct param *params;
57         struct arg_type_info *return_info;
58         int own_return_info;
59         size_t num_params;
60         Function * next;
61 };
62
63 extern Function * list_of_functions;
64 extern char *PLTs_initialized_by_here;
65
66 struct opt_c_struct {
67         int count;
68         struct timeval tv;
69 };
70
71 #include "options.h"
72 #include "output.h"
73 #ifdef USE_DEMANGLE
74 #include "demangle.h"
75 #endif
76
77 extern Dict * dict_opt_c;
78
79 /* Events  */
80 extern Event * next_event(void);
81 extern void handle_event(Event * event);
82
83 extern pid_t execute_program(const char * command, char ** argv);
84
85 extern void show_summary(void);
86
87 struct breakpoint;
88 struct library_symbol;
89
90 /* Format VALUE into STREAM.  The dictionary of all arguments is given
91  * for purposes of evaluating array lengths and other dynamic
92  * expressions.  Returns number of characters outputted, -1 in case of
93  * failure.  */
94 int format_argument(FILE *stream, struct value *value,
95                     struct value_dict *arguments);
96
97 #endif