mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-30 18:38:32 +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 "
|
||||
"monado-dev.socket active?");
|
||||
#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);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue