Updated Branches: refs/heads/3.8.x ea015f3a2 -> a1c128ee6
https://issues.apache.org/jira/browse/AMQCPP-529 Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/a1c128ee Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/a1c128ee Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/a1c128ee Branch: refs/heads/3.8.x Commit: a1c128ee6d7b55c3f8b50c1c3919abd8ea435709 Parents: ea015f3 Author: Timothy Bish <[email protected]> Authored: Thu Jan 2 16:08:29 2014 -0500 Committer: Timothy Bish <[email protected]> Committed: Thu Jan 2 16:08:29 2014 -0500 ---------------------------------------------------------------------- .../src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h | 2 +- .../src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a1c128ee/activemq-cpp/src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h ---------------------------------------------------------------------- diff --git a/activemq-cpp/src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h b/activemq-cpp/src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h index 810babc..8c99153 100644 --- a/activemq-cpp/src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h +++ b/activemq-cpp/src/main/decaf/internal/util/concurrent/unix/PlatformDefs.h @@ -50,7 +50,7 @@ namespace concurrent{ typedef void* PLATFORM_THREAD_ENTRY_ARG; #define PLATFORM_THREAD_RETURN() return 0; #define PLATFORM_THREAD_CALLBACK_TYPE void* - #define PLATFORM_DEFAULT_STACK_SIZE 0x8000 + #define PLATFORM_DEFAULT_STACK_SIZE 0x10000 #define PLATFORM_CALLING_CONV typedef pthread_t decaf_thread_t; http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a1c128ee/activemq-cpp/src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h ---------------------------------------------------------------------- diff --git a/activemq-cpp/src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h b/activemq-cpp/src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h index 579ed45..840744f 100644 --- a/activemq-cpp/src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h +++ b/activemq-cpp/src/main/decaf/internal/util/concurrent/windows/PlatformDefs.h @@ -57,7 +57,7 @@ namespace concurrent{ #define PLATFORM_THREAD_RETURN() return 0; #define PLATFORM_THREAD_CALLBACK_TYPE unsigned - #define PLATFORM_DEFAULT_STACK_SIZE 0x8000 + #define PLATFORM_DEFAULT_STACK_SIZE 0x10000 #define PLATFORM_CALLING_CONV __stdcall typedef HANDLE decaf_thread_t;
