schedsvc: Print an error if the service couldn't start monitoring the tasks directory.

This happens for old prefixes with disabled updates.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2018-04-24 16:13:20 +08:00 committed by Alexandre Julliard
parent a49f072040
commit 0f77a4cb82
1 changed files with 8 additions and 1 deletions

View File

@ -50,7 +50,14 @@ static DWORD WINAPI tasks_monitor_thread(void *arg)
htasks = CreateFileW(path, FILE_LIST_DIRECTORY, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, htasks = CreateFileW(path, FILE_LIST_DIRECTORY, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OVERLAPPED, NULL); NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OVERLAPPED, NULL);
if (htasks == INVALID_HANDLE_VALUE) return -1; if (htasks == INVALID_HANDLE_VALUE)
{
ERR("Couldn't start monitoring %s for tasks, error %u\n", debugstr_w(path), GetLastError());
/* Probably this is an old prefix with disabled updates */
if (GetLastError() == ERROR_PATH_NOT_FOUND || GetLastError() == ERROR_FILE_NOT_FOUND)
ERR("Please create the directory manually\n");
return -1;
}
memset(&ov, 0, sizeof(ov)); memset(&ov, 0, sizeof(ov));
ov.hEvent = CreateEventW(NULL, FALSE, FALSE, NULL); ov.hEvent = CreateEventW(NULL, FALSE, FALSE, NULL);