Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
bc39a746
Commit
bc39a746
authored
7 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
server: Remove no longer used is_same_file() function.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aa90910e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
server/file.c
+0
-6
0 additions, 6 deletions
server/file.c
server/file.h
+0
-1
0 additions, 1 deletion
server/file.h
with
0 additions
and
7 deletions
server/file.c
+
0
−
6
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
;
...
...
This diff is collapsed.
Click to expand it.
server/file.h
+
0
−
1
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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment