ipc: log when listening to IPC socket

Fixes #3598.
This commit is contained in:
wm4 2016-09-29 16:47:19 +02:00
parent 86ab4b8a9f
commit b6920372c2
2 changed files with 4 additions and 0 deletions

View File

@ -339,6 +339,8 @@ static void *ipc_thread(void *p)
goto done;
}
MP_VERBOSE(arg, "Listening to IPC socket.\n");
int client_num = 0;
struct pollfd fds[2] = {

View File

@ -377,6 +377,8 @@ static void *ipc_thread(void *p)
goto done;
}
MP_VERBOSE(arg, "Listening to IPC pipe.\n");
while (1) {
DWORD err = ConnectNamedPipe(server, &ol) ? 0 : GetLastError();