Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
56169c74
Commit
56169c74
authored
Apr 01, 2004
by
vva@eagle.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.0
into eagle.mysql.r18.ru:/home/vva/work/BUG_3200/mysql-4.0
parents
4da72c2e
64280f50
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
pstack/bucomm.h
pstack/bucomm.h
+6
-0
pstack/budbg.h
pstack/budbg.h
+6
-0
pstack/pstack.c
pstack/pstack.c
+2
-1
No files found.
pstack/bucomm.h
View file @
56169c74
...
...
@@ -50,6 +50,12 @@ void *alloca ();
# endif
/* HAVE_ALLOCA_H */
#endif
#ifndef BFD_TRUE_FALSE
#define boolean bfd_boolean
#define true TRUE
#define false FALSE
#endif
/* bucomm.c */
void
bfd_nonfatal
PARAMS
((
CONST
char
*
));
...
...
pstack/budbg.h
View file @
56169c74
...
...
@@ -24,6 +24,12 @@
#include <stdio.h>
#ifndef BFD_TRUE_FALSE
#define boolean bfd_boolean
#define true TRUE
#define false FALSE
#endif
/* Routine used to read generic debugging information. */
extern
PTR
read_debugging_info
PARAMS
((
bfd
*
,
asymbol
**
,
long
));
...
...
pstack/pstack.c
View file @
56169c74
...
...
@@ -2667,7 +2667,8 @@ pstack_install_segv_action( const char* path_format_)
if
((
abfd
=
load_bfd
(
pid
))
==
0
)
fprintf
(
stderr
,
"BFD load failed..
\n
"
);
else
{
long
storage_needed
=
bfd_get_symtab_upper_bound
(
abfd
);
long
storage_needed
=
(
bfd_get_file_flags
(
abfd
)
&
HAS_SYMS
)
?
bfd_get_symtab_upper_bound
(
abfd
)
:
0
;
long
i
;
(
void
)
i
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment