Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
0232c87f
Unverified
Commit
0232c87f
authored
Feb 20, 2020
by
Sinan Kaya
Committed by
GitHub
Feb 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing ABSL_HAVE_VDSO_SUPPORT conditional (#622)
Signed-off-by: Sinan Kaya <sinan.kaya@microsoft.com>
parent
3c814105
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
absl/debugging/internal/stacktrace_x86-inl.inc
+4
-0
No files found.
absl/debugging/internal/stacktrace_x86-inl.inc
View file @
0232c87f
...
@@ -173,6 +173,7 @@ static void **NextStackFrame(void **old_fp, const void *uc) {
...
@@ -173,6 +173,7 @@ static void **NextStackFrame(void **old_fp, const void *uc) {
static
const
unsigned
char
*
kernel_rt_sigreturn_address
=
nullptr
;
static
const
unsigned
char
*
kernel_rt_sigreturn_address
=
nullptr
;
static
const
unsigned
char
*
kernel_vsyscall_address
=
nullptr
;
static
const
unsigned
char
*
kernel_vsyscall_address
=
nullptr
;
if
(
num_push_instructions
==
-
1
)
{
if
(
num_push_instructions
==
-
1
)
{
#ifdef ABSL_HAVE_VDSO_SUPPORT
absl
::
debugging_internal
::
VDSOSupport
vdso
;
absl
::
debugging_internal
::
VDSOSupport
vdso
;
if
(
vdso
.
IsPresent
())
{
if
(
vdso
.
IsPresent
())
{
absl
::
debugging_internal
::
VDSOSupport
::
SymbolInfo
absl
::
debugging_internal
::
VDSOSupport
::
SymbolInfo
...
@@ -201,6 +202,9 @@ static void **NextStackFrame(void **old_fp, const void *uc) {
...
@@ -201,6 +202,9 @@ static void **NextStackFrame(void **old_fp, const void *uc) {
}
else
{
}
else
{
num_push_instructions
=
0
;
num_push_instructions
=
0
;
}
}
#else
num_push_instructions
=
0
;
#endif
}
}
if
(
num_push_instructions
!=
0
&&
kernel_rt_sigreturn_address
!=
nullptr
&&
if
(
num_push_instructions
!=
0
&&
kernel_rt_sigreturn_address
!=
nullptr
&&
old_fp
[
1
]
==
kernel_rt_sigreturn_address
)
{
old_fp
[
1
]
==
kernel_rt_sigreturn_address
)
{
...
...
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