Tracy Update (#2534)

* Update the Tracy repository
* Update submodules
This commit is contained in:
Alexander Bock
2023-03-01 11:48:21 -07:00
committed by GitHub
parent 5b29fb045a
commit 375e5c6561
103 changed files with 472 additions and 471 deletions

View File

@@ -88,7 +88,7 @@ int ServerModule::skyBrowserUpdateTime() const {
void ServerModule::internalInitialize(const ghoul::Dictionary& configuration) {
global::callback::preSync->emplace_back([this]() {
ZoneScopedN("ServerModule")
ZoneScopedN("ServerModule");
preSync();
});
@@ -173,7 +173,7 @@ void ServerModule::preSync() {
}
void ServerModule::cleanUpFinishedThreads() {
ZoneScoped
ZoneScoped;
for (ConnectionData& connectionData : _connections) {
Connection& connection = *connectionData.connection;
@@ -194,7 +194,7 @@ void ServerModule::cleanUpFinishedThreads() {
}
void ServerModule::disconnectAll() {
ZoneScoped
ZoneScoped;
for (std::unique_ptr<ServerInterface>& serverInterface : _interfaces) {
serverInterface->deinitialize();
@@ -211,7 +211,7 @@ void ServerModule::disconnectAll() {
}
void ServerModule::handleConnection(std::shared_ptr<Connection> connection) {
ZoneScoped
ZoneScoped;
std::string messageString;
messageString.reserve(256);
@@ -222,7 +222,7 @@ void ServerModule::handleConnection(std::shared_ptr<Connection> connection) {
}
void ServerModule::consumeMessages() {
ZoneScoped
ZoneScoped;
std::lock_guard lock(_messageQueueMutex);
while (!_messageQueue.empty()) {