Commit 02a6efaf authored by captainwong's avatar captainwong

fix server crash

parent 9c549958
......@@ -347,7 +347,26 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
impl->tv.tv_sec = maxIdleTime_;
impl->tv.tv_usec = 0;
const struct timeval* tv_out = event_base_init_common_timeout(impl->base, &impl->tv);
memcpy(&impl->tv, tv_out, sizeof(struct timeval));
memcpy(&impl->tv, tv_out, sizeof(struct timeval));
impl->workerThreadContexts = new PrivateImpl::WorkerThreadContextPtr[threadNum_];
for (int i = 0; i < threadNum_; i++) {
impl->workerThreadContexts[i] = (new PrivateImpl::WorkerThreadContext(name_, i));
}
// fix
// wait till all worker thread's base is created
bool all_created = false;
while (!all_created) {
all_created = true;
for (int i = 0; i < threadNum_; i++) {
if (!impl->workerThreadContexts[i]->base) {
all_created = false;
break;
}
}
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
impl->thread = std::thread([this]() {
JLOG_INFO("{} listen thread started", name_.data());
......@@ -355,11 +374,6 @@ bool simple_libevent_server::start(uint16_t port, std::string& msg)
JLOG_INFO("{} listen thread exited", name_.data());
});
impl->workerThreadContexts = new PrivateImpl::WorkerThreadContextPtr[threadNum_];
for (int i = 0; i < threadNum_; i++) {
impl->workerThreadContexts[i] = (new PrivateImpl::WorkerThreadContext(name_, i));
}
started_ = true;
return true;
} while (0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment