Commit cc7e3ec8 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

server: Create pseudo-fds as initially signaled.

parent 7c0f6420
......@@ -711,7 +711,7 @@ static void do_return_status(ULONG ioctl, struct return_status_params *params)
ok(port != NULL, "failed to create port, error %u\n", GetLastError());
ret = WaitForSingleObject(file, 0);
todo_wine ok(!ret, "got %d\n", ret);
ok(!ret, "got %d\n", ret);
ResetEvent(event);
strcpy(buffer, "abcdef");
......
......@@ -1742,7 +1742,7 @@ struct fd *alloc_pseudo_fd( const struct fd_ops *fd_user_ops, struct object *use
fd->nt_namelen = 0;
fd->unix_fd = -1;
fd->cacheable = 0;
fd->signaled = 0;
fd->signaled = 1;
fd->fs_locks = 0;
fd->poll_index = -1;
fd->completion = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment