Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
glog
Commits
c4814b72
Commit
c4814b72
authored
May 09, 2017
by
Shinichiro Hamaji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
symbolize: Allow 4kB stack consumption on PPC64
parent
f278d734
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
symbolize_unittest.cc
src/symbolize_unittest.cc
+5
-0
No files found.
src/symbolize_unittest.cc
View file @
c4814b72
...
...
@@ -260,8 +260,13 @@ static const char *SymbolizeStackConsumption(void *pc, int *stack_consumed) {
return
g_symbolize_result
;
}
#ifdef __ppc64__
// Symbolize stack consumption should be within 4kB.
const
int
kStackConsumptionUpperLimit
=
4096
;
#else
// Symbolize stack consumption should be within 2kB.
const
int
kStackConsumptionUpperLimit
=
2048
;
#endif
TEST
(
Symbolize
,
SymbolizeStackConsumption
)
{
int
stack_consumed
;
...
...
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