fix(ipc): Remove existing fifo file

This commit is contained in:
Michael Carlberg 2017-01-24 02:14:19 +01:00
parent 6cc7a2c093
commit d6a34717bf
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ ipc::make_type ipc::make() {
ipc::ipc(signal_emitter& emitter, const logger& logger) : m_sig(emitter), m_log(logger) {
m_path = string_util::replace(PATH_MESSAGING_FIFO, "%pid%", to_string(getpid()));
if (file_util::exists(m_path) && unlink(m_path.c_str()) == -1) {
throw system_error("Failed to remove ipc channel");
}
if (mkfifo(m_path.c_str(), 0666) == -1) {
throw system_error("Failed to create ipc channel");
}