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
26c48a80
Commit
26c48a80
authored
Sep 15, 2008
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Plain Diff
merge fix for 35987
parents
94fad7c0
5343b7ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
1 deletion
+61
-1
mysys/stacktrace.c
mysys/stacktrace.c
+61
-1
No files found.
mysys/stacktrace.c
View file @
26c48a80
...
...
@@ -317,6 +317,7 @@ void my_write_core(int sig)
#else
/* __WIN__*/
#include <dbghelp.h>
#include <tlhelp32.h>
/*
Stack tracing on Windows is implemented using Debug Helper library(dbghelp.dll)
...
...
@@ -409,6 +410,63 @@ void my_set_exception_pointers(EXCEPTION_POINTERS *ep)
exception_ptrs
=
ep
;
}
/*
Get symbol path - semicolon-separated list of directories to search for debug
symbols. We expect PDB in the same directory as corresponding exe or dll,
so the path is build from directories of the loaded modules. If environment
variable _NT_SYMBOL_PATH is set, it's value appended to the symbol search path
*/
static
void
get_symbol_path
(
char
*
path
,
size_t
size
)
{
HANDLE
hSnap
;
char
*
envvar
;
path
[
0
]
=
'\0'
;
/*
Enumerate all modules, and add their directories to the path.
Avoid duplicate entries.
*/
hSnap
=
CreateToolhelp32Snapshot
(
TH32CS_SNAPMODULE
,
GetCurrentProcessId
());
if
(
hSnap
!=
INVALID_HANDLE_VALUE
)
{
BOOL
ret
;
MODULEENTRY32
mod
;
mod
.
dwSize
=
sizeof
(
MODULEENTRY32
);
for
(
ret
=
Module32First
(
hSnap
,
&
mod
);
ret
;
ret
=
Module32Next
(
hSnap
,
&
mod
))
{
char
*
module_dir
=
mod
.
szExePath
;
char
*
p
=
strrchr
(
module_dir
,
'\\'
);
if
(
!
p
)
{
/*
Path separator was not found. Not known to happen, if ever happens,
will indicate current directory.
*/
module_dir
[
0
]
=
'.'
;
p
=
module_dir
+
1
;
}
*
p
++=
';'
;
*
p
=
'\0'
;
if
(
!
strstr
(
path
,
module_dir
))
{
strncat
(
path
,
module_dir
,
size
);
}
}
CloseHandle
(
hSnap
);
}
/* Add _NT_SYMBOL_PATH, if present. */
envvar
=
getenv
(
"_NT_SYMBOL_PATH"
);
if
(
envvar
)
{
strncat
(
path
,
envvar
,
size
);
}
}
#define MAX_SYMBOL_PATH 32768
/* Platform SDK in VS2003 does not have definition for SYMOPT_NO_PROMPTS*/
#ifndef SYMOPT_NO_PROMPTS
#define SYMOPT_NO_PROMPTS 0
...
...
@@ -425,6 +483,7 @@ void my_print_stacktrace(uchar* unused1, ulong unused2)
int
i
;
CONTEXT
context
;
STACKFRAME64
frame
=
{
0
};
static
char
symbol_path
[
MAX_SYMBOL_PATH
+
1
];
if
(
!
exception_ptrs
||
!
init_dbghelp_functions
())
return
;
...
...
@@ -433,7 +492,8 @@ void my_print_stacktrace(uchar* unused1, ulong unused2)
context
=
*
(
exception_ptrs
->
ContextRecord
);
/*Initialize symbols.*/
pSymSetOptions
(
SYMOPT_LOAD_LINES
|
SYMOPT_NO_PROMPTS
|
SYMOPT_DEFERRED_LOADS
|
SYMOPT_DEBUG
);
pSymInitialize
(
hProcess
,
NULL
,
TRUE
);
get_symbol_path
(
symbol_path
,
MAX_SYMBOL_PATH
);
pSymInitialize
(
hProcess
,
symbol_path
,
TRUE
);
/*Prepare stackframe for the first StackWalk64 call*/
frame
.
AddrFrame
.
Mode
=
frame
.
AddrPC
.
Mode
=
frame
.
AddrStack
.
Mode
=
AddrModeFlat
;
...
...
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