various fixes

* fix include paths
* print on stderr
This commit is contained in:
Dennis Klein
2017-03-28 14:48:08 +02:00
committed by Mohammad Al-Turany
parent 13c9c09ab9
commit 365a68010f
17 changed files with 45 additions and 93 deletions

View File

@@ -48,11 +48,11 @@ FairMQContextSHM::~FairMQContextSHM()
if (boost::interprocess::shared_memory_object::remove("FairMQSharedMemory"))
{
printf("Successfully removed shared memory after the device has stopped.\n");
fprintf(stderr, "Successfully removed shared memory after the device has stopped.\n");
}
else
{
printf("Did not remove shared memory after the device stopped. Already removed?\n");
fprintf(stderr, "Did not remove shared memory after the device stopped. Already removed?\n");
}
}