Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
cc7e3ec8
Commit
cc7e3ec8
authored
Sep 14, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Sep 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Create pseudo-fds as initially signaled.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7c0f6420
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ntoskrnl.c
dlls/ntoskrnl.exe/tests/ntoskrnl.c
+1
-1
fd.c
server/fd.c
+1
-1
No files found.
dlls/ntoskrnl.exe/tests/ntoskrnl.c
View file @
cc7e3ec8
...
...
@@ -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"
);
...
...
server/fd.c
View file @
cc7e3ec8
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment