diff options
author | Josh Gao <jmgao@google.com> | 2020-01-21 12:04:28 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2020-01-21 12:04:28 -0800 |
commit | 1c698729df617794ae11cf4323656e87430e5001 (patch) | |
tree | 39264021a13f8cdaf6092861e0d88a3942d35a8b /debuggerd/handler/debuggerd_handler.cpp | |
parent | 3e59bf0686e56acff9d371852257d7c303cb7f3f (diff) | |
parent | 6ea42a892fbec7cc79e725200d7a22dd884a0dd3 (diff) |
Merge "debuggerd_handler: increase thread stack size."
am: 6ea42a892f
Change-Id: I898ab82cd0689144b3fd37fb3a144380db6ef229
Diffstat (limited to 'debuggerd/handler/debuggerd_handler.cpp')
-rw-r--r-- | debuggerd/handler/debuggerd_handler.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index 6e0128993..f8192b52d 100644 --- a/debuggerd/handler/debuggerd_handler.cpp +++ b/debuggerd/handler/debuggerd_handler.cpp @@ -592,19 +592,20 @@ void debuggerd_init(debuggerd_callbacks_t* callbacks) { g_callbacks = *callbacks; } - void* thread_stack_allocation = - mmap(nullptr, PAGE_SIZE * 3, PROT_NONE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); + size_t thread_stack_pages = 8; + void* thread_stack_allocation = mmap(nullptr, PAGE_SIZE * (thread_stack_pages + 2), PROT_NONE, + MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); if (thread_stack_allocation == MAP_FAILED) { fatal_errno("failed to allocate debuggerd thread stack"); } char* stack = static_cast<char*>(thread_stack_allocation) + PAGE_SIZE; - if (mprotect(stack, PAGE_SIZE, PROT_READ | PROT_WRITE) != 0) { + if (mprotect(stack, PAGE_SIZE * thread_stack_pages, PROT_READ | PROT_WRITE) != 0) { fatal_errno("failed to mprotect debuggerd thread stack"); } // Stack grows negatively, set it to the last byte in the page... - stack = (stack + PAGE_SIZE - 1); + stack = (stack + thread_stack_pages * PAGE_SIZE - 1); // and align it. stack -= 15; pseudothread_stack = stack; |