Skip to content
Snippets Groups Projects
Commit 55419d39 authored by Friendly Automation's avatar Friendly Automation Committed by Gerrit Code Review
Browse files

Merge "Core: Increase AST_PBX_MAX_STACK to 512 if not LOW_MEMORY" into 13

parents 82758295 23ffc3af
No related branches found
No related tags found
No related merge requests found
......@@ -220,7 +220,11 @@ enum ext_match_t {
E_SPAWN = 0x12, /* want to spawn an extension. Requires exact match */
E_FINDLABEL = 0x22 /* returns the priority for a given label. Requires exact match */
};
#ifdef LOW_MEMORY
#define AST_PBX_MAX_STACK 128
#else
#define AST_PBX_MAX_STACK 512
#endif
/* request and result for pbx_find_extension */
struct pbx_find_info {
......
......@@ -1548,7 +1548,12 @@ enum ext_match_t {
#define STATUS_NO_PRIORITY 3
#define STATUS_NO_LABEL 4
#define STATUS_SUCCESS 5
#ifdef LOW_MEMORY
#define AST_PBX_MAX_STACK 128
#else
#define AST_PBX_MAX_STACK 512
#endif
/* request and result for pbx_find_extension */
struct pbx_find_info {
......
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