necouchman commented on code in PR #360: URL: https://github.com/apache/guacamole-server/pull/360#discussion_r1733509687
########## src/guacd/daemon.c: ########## @@ -275,6 +282,12 @@ int main(int argc, char* argv[]) { /* General */ int retval; + /* Set default stack size of 8MB */ + pthread_attr_t default_pthread_attr; + pthread_attr_init(&default_pthread_attr); + pthread_attr_setstacksize(&default_pthread_attr, GUACD_THREAD_STACK_SIZE); + pthread_setattr_default_np(&default_pthread_attr); Review Comment: Okay, this should be addressed via rebase. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org