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
6dcc1af7
Commit
6dcc1af7
authored
Mar 18, 2003
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Mar 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix signature of open_fd().
parent
c62c1c01
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
fd.c
server/fd.c
+1
-1
file.h
server/file.h
+1
-1
No files found.
server/fd.c
View file @
6dcc1af7
...
...
@@ -866,7 +866,7 @@ struct fd *alloc_fd( const struct fd_ops *fd_user_ops, struct object *user )
/* open() wrapper using a struct fd */
/* the fd must have been created with alloc_fd */
/* on error the fd object is released */
struct
fd
*
open_fd
(
struct
fd
*
fd
,
const
char
*
name
,
int
flags
,
in
t
*
mode
)
struct
fd
*
open_fd
(
struct
fd
*
fd
,
const
char
*
name
,
int
flags
,
mode_
t
*
mode
)
{
struct
stat
st
;
struct
closed_fd
*
closed_fd
;
...
...
server/file.h
View file @
6dcc1af7
...
...
@@ -45,7 +45,7 @@ struct fd_ops
/* file descriptor functions */
extern
struct
fd
*
alloc_fd
(
const
struct
fd_ops
*
fd_user_ops
,
struct
object
*
user
);
extern
struct
fd
*
open_fd
(
struct
fd
*
fd
,
const
char
*
name
,
int
flags
,
in
t
*
mode
);
extern
struct
fd
*
open_fd
(
struct
fd
*
fd
,
const
char
*
name
,
int
flags
,
mode_
t
*
mode
);
extern
struct
fd
*
create_anonymous_fd
(
const
struct
fd_ops
*
fd_user_ops
,
int
unix_fd
,
struct
object
*
user
);
extern
void
*
get_fd_user
(
struct
fd
*
fd
);
...
...
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