Skip to content
Snippets Groups Projects
Commit ee11213e authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #6368 from ctiller/vtune

Ensure minimum size of alt stack (to please vtune)
parents 90b4a87d 1b409a02
No related branches found
No related tags found
No related merge requests found
...@@ -210,7 +210,7 @@ static void install_crash_handler() { ...@@ -210,7 +210,7 @@ static void install_crash_handler() {
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
static char g_alt_stack[MINSIGSTKSZ]; static char g_alt_stack[GPR_MAX(MINSIGSTKSZ, 65536)];
#define MAX_FRAMES 32 #define MAX_FRAMES 32
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment