mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-22 06:36:24 +00:00
ipc: Print information to delete socket file
This commit is contained in:
parent
94d546322e
commit
7b95330bb5
|
@ -98,6 +98,10 @@ create_listen_socket(struct ipc_server_mainloop *ml, int *out_fd)
|
||||||
"Or, is the systemd unit monado.socket or "
|
"Or, is the systemd unit monado.socket or "
|
||||||
"monado-dev.socket active?");
|
"monado-dev.socket active?");
|
||||||
#endif
|
#endif
|
||||||
|
if (errno == EADDRINUSE) {
|
||||||
|
U_LOG_E("If monado-service is not running, delete %s before starting a new instance",
|
||||||
|
IPC_MSG_SOCK_FILE);
|
||||||
|
}
|
||||||
close(fd);
|
close(fd);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue