This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch 7.0.x
in repository https://git-dual.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new ec529b7 TS-4883: Fix Thread::start call in EventProcessor::start
ec529b7 is described below
commit ec529b792c7113cd7c524c7818d820a68181a66d
Author: Masato Gosui <[email protected]>
AuthorDate: Wed Sep 21 12:42:00 2016 +0900
TS-4883: Fix Thread::start call in EventProcessor::start
(cherry picked from commit a545a809ab5eae205ac8bab0c23fe01c4fca2fdd)
---
iocore/eventsystem/UnixEventProcessor.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/iocore/eventsystem/UnixEventProcessor.cc
b/iocore/eventsystem/UnixEventProcessor.cc
index 6415cb1..6ca2b1a 100644
--- a/iocore/eventsystem/UnixEventProcessor.cc
+++ b/iocore/eventsystem/UnixEventProcessor.cc
@@ -237,7 +237,7 @@ EventProcessor::start(int n_event_threads, size_t stacksize)
#endif // TS_USE_HWLOC
// Start our new thread with our new stack.
- tid = all_ethreads[i]->start(thr_name, stacksize, NULL, stack);
+ tid = all_ethreads[i]->start(thr_name, stacksize, NULL, NULL, stack);
stack = NULL;
#if TS_USE_HWLOC
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].