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
bc39a746
Commit
bc39a746
authored
Sep 26, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Remove no longer used is_same_file() function.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aa90910e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
file.c
server/file.c
+0
-6
file.h
server/file.h
+0
-1
No files found.
server/file.c
View file @
bc39a746
...
...
@@ -265,12 +265,6 @@ done:
return
obj
;
}
/* check if two file objects point to the same file */
int
is_same_file
(
struct
file
*
file1
,
struct
file
*
file2
)
{
return
is_same_file_fd
(
file1
->
fd
,
file2
->
fd
);
}
static
void
file_dump
(
struct
object
*
obj
,
int
verbose
)
{
struct
file
*
file
=
(
struct
file
*
)
obj
;
...
...
server/file.h
View file @
bc39a746
...
...
@@ -136,7 +136,6 @@ extern const char *get_timeout_str( timeout_t timeout );
extern
struct
file
*
get_file_obj
(
struct
process
*
process
,
obj_handle_t
handle
,
unsigned
int
access
);
extern
int
get_file_unix_fd
(
struct
file
*
file
);
extern
int
is_same_file
(
struct
file
*
file1
,
struct
file
*
file2
);
extern
struct
file
*
create_file_for_fd
(
int
fd
,
unsigned
int
access
,
unsigned
int
sharing
);
extern
struct
file
*
create_file_for_fd_obj
(
struct
fd
*
fd
,
unsigned
int
access
,
unsigned
int
sharing
);
extern
void
file_set_error
(
void
);
...
...
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