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
820d703c
Commit
820d703c
authored
Sep 10, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Sep 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Remove no longer used is_fd_signaled().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
24021931
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
fd.c
server/fd.c
+0
-6
file.h
server/file.h
+0
-1
No files found.
server/fd.c
View file @
820d703c
...
...
@@ -2057,12 +2057,6 @@ void set_fd_signaled( struct fd *fd, int signaled )
if
(
signaled
)
wake_up
(
fd
->
user
,
0
);
}
/* check if fd is signaled */
int
is_fd_signaled
(
struct
fd
*
fd
)
{
return
fd
->
signaled
;
}
/* handler for close_handle that refuses to close fd-associated handles in other processes */
int
fd_close_handle
(
struct
object
*
obj
,
struct
process
*
process
,
obj_handle_t
handle
)
{
...
...
server/file.h
View file @
820d703c
...
...
@@ -99,7 +99,6 @@ extern obj_handle_t lock_fd( struct fd *fd, file_pos_t offset, file_pos_t count,
extern
void
unlock_fd
(
struct
fd
*
fd
,
file_pos_t
offset
,
file_pos_t
count
);
extern
void
allow_fd_caching
(
struct
fd
*
fd
);
extern
void
set_fd_signaled
(
struct
fd
*
fd
,
int
signaled
);
extern
int
is_fd_signaled
(
struct
fd
*
fd
);
extern
char
*
dup_fd_name
(
struct
fd
*
root
,
const
char
*
name
);
extern
int
default_fd_signaled
(
struct
object
*
obj
,
struct
wait_queue_entry
*
entry
);
...
...
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