mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-28 06:59:46 -06:00
removed a comment, changed name of script storing variable to something that makes more sense
This commit is contained in:
@@ -351,9 +351,9 @@ namespace openspace {
|
||||
OsEng.scriptEngine()->queueScript(script);
|
||||
|
||||
//add script to all executed scripts
|
||||
_sentScriptsMutex.lock();
|
||||
_sentScripts.push_back(script);
|
||||
_sentScriptsMutex.unlock();
|
||||
_executedScriptsMutex.lock();
|
||||
_executedScripts.push_back(script);
|
||||
_executedScriptsMutex.unlock();
|
||||
}
|
||||
|
||||
void ParallelConnection::decodeHostInfoMessage(){
|
||||
@@ -545,9 +545,9 @@ namespace openspace {
|
||||
}
|
||||
|
||||
void ParallelConnection::sendScript(const std::string script){
|
||||
_sentScriptsMutex.lock();
|
||||
_sentScripts.push_back(script);
|
||||
_sentScriptsMutex.unlock();
|
||||
_executedScriptsMutex.lock();
|
||||
_executedScripts.push_back(script);
|
||||
_executedScriptsMutex.unlock();
|
||||
|
||||
uint16_t msglen = static_cast<uint16_t>(script.length());
|
||||
std::vector<char> buffer;
|
||||
|
||||
Reference in New Issue
Block a user