mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 17:46:52 +02:00
rename nodesToKill to nodesToShutdown
This commit is contained in:
parent
d22219a1f2
commit
67294d3a23
1 changed files with 4 additions and 4 deletions
|
@ -1176,18 +1176,18 @@ void OctreeServer::aboutToFinish() {
|
||||||
_jurisdictionSender->terminating();
|
_jurisdictionSender->terminating();
|
||||||
}
|
}
|
||||||
|
|
||||||
QSet<SharedNodePointer> nodesToKill;
|
QSet<SharedNodePointer> nodesToShutdown;
|
||||||
|
|
||||||
// Force a shutdown of all of our OctreeSendThreads.
|
// Force a shutdown of all of our OctreeSendThreads.
|
||||||
// At this point it has to be impossible for a linkedDataCreateCallback to be called for a new node
|
// At this point it has to be impossible for a linkedDataCreateCallback to be called for a new node
|
||||||
nodeList->eachNode([&nodesToKill](const SharedNodePointer& node) {
|
nodeList->eachNode([&nodesToShutdown](const SharedNodePointer& node) {
|
||||||
nodesToKill << node;
|
nodesToShutdown << node;
|
||||||
});
|
});
|
||||||
|
|
||||||
// What follows is a hack to force OctreeSendThreads to cleanup before the OctreeServer is gone.
|
// What follows is a hack to force OctreeSendThreads to cleanup before the OctreeServer is gone.
|
||||||
// I would prefer to allow the SharedNodePointer ref count drop to zero to do this automatically
|
// I would prefer to allow the SharedNodePointer ref count drop to zero to do this automatically
|
||||||
// but that isn't possible as long as the OctreeSendThread has an OctreeServer* that it uses.
|
// but that isn't possible as long as the OctreeSendThread has an OctreeServer* that it uses.
|
||||||
for (auto& node : nodesToKill) {
|
for (auto& node : nodesToShutdown) {
|
||||||
qDebug() << qPrintable(_safeServerName) << "server about to finish while node still connected node:" << *node;
|
qDebug() << qPrintable(_safeServerName) << "server about to finish while node still connected node:" << *node;
|
||||||
forceNodeShutdown(node);
|
forceNodeShutdown(node);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue