The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ipc: Output the attempted filename in the bind error message.

+3 -2
+3 -2
src/xrt/ipc/ipc_server_process.c
··· 225 225 ret = bind(fd, (struct sockaddr *)&addr, sizeof(addr)); 226 226 if (ret < 0) { 227 227 fprintf(stderr, 228 - "ERROR: Could not bind socket: is the " 229 - "service running already?\n"); 228 + "ERROR: Could not bind socket to path %s: is the " 229 + "service running already?\n", 230 + IPC_MSG_SOCK_FILE); 230 231 #ifdef XRT_HAVE_SYSTEMD 231 232 fprintf(stderr, 232 233 "Or, is the systemd unit monado.socket or "