Merge branch 'development' into LTS_development

This commit is contained in:
Thulinma 2017-05-23 21:36:55 +02:00
commit 6bca77d758
3 changed files with 8 additions and 0 deletions

View file

@ -2081,7 +2081,9 @@ namespace DTSC {
bool Meta::toFile(const std::string & fileName){
std::ofstream oFile(fileName.c_str());
oFile << toJSON().toNetPacked();
if (!oFile.good()){return false;}
oFile.close();
return true;
}
///\brief Converts a meta object to a human readable string

View file

@ -223,6 +223,7 @@ namespace IPC {
///\brief Tries to wait for the semaphore, returns true if successful, false otherwise
bool semaphore::tryWait() {
if (!(*this)){return false;}
int result;
#if defined(__CYGWIN__) || defined(_WIN32)
result = WaitForSingleObject(mySem, 0);//wait at most 1ms
@ -238,6 +239,7 @@ namespace IPC {
///\brief Tries to wait for the semaphore for a single second, returns true if successful, false otherwise
bool semaphore::tryWaitOneSecond() {
if (!(*this)){return false;}
int result;
#if defined(__CYGWIN__) || defined(_WIN32)
result = WaitForSingleObject(mySem, 1000);//wait at most 1s

View file

@ -341,6 +341,10 @@ namespace Mist {
void Input::stream(){
IPC::semaphore pullLock;
pullLock.open(std::string("/MstPull_" + streamName).c_str(), O_CREAT | O_RDWR, ACCESSPERMS, 1);
if (!pullLock){
FAIL_MSG("Could not open pull lock for stream '%s' - aborting!", streamName.c_str());
return;
}
if (!pullLock.tryWait()){
WARN_MSG("A pull process for stream %s is already running", streamName.c_str());
pullLock.close();