Skip to content
Snippets Groups Projects
Unverified Commit b4d2882c authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #8998 from kaspar030/gcoap_increase_stacksize

net/gcoap: increase stack size by sizeof(coap_pkt_t)
parents a9d51681 e1f6a5af
No related branches found
No related tags found
No related merge requests found
...@@ -410,7 +410,8 @@ extern "C" { ...@@ -410,7 +410,8 @@ extern "C" {
* @brief Stack size for module thread * @brief Stack size for module thread
*/ */
#ifndef GCOAP_STACK_SIZE #ifndef GCOAP_STACK_SIZE
#define GCOAP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT + DEBUG_EXTRA_STACKSIZE) #define GCOAP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT + DEBUG_EXTRA_STACKSIZE \
+ sizeof(coap_pkt_t))
#endif #endif
/** /**
......
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