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
61ec6c1c
Commit
61ec6c1c
authored
Nov 29, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed get_event_obj/get_file_obj to use the process parameter (thanks
to Eric Pouech).
parent
d083a7bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
event.c
server/event.c
+1
-1
file.c
server/file.c
+2
-4
No files found.
server/event.c
View file @
61ec6c1c
...
...
@@ -61,7 +61,7 @@ static struct event *create_event( const WCHAR *name, size_t len,
struct
event
*
get_event_obj
(
struct
process
*
process
,
int
handle
,
unsigned
int
access
)
{
return
(
struct
event
*
)
get_handle_obj
(
current
->
process
,
handle
,
access
,
&
event_ops
);
return
(
struct
event
*
)
get_handle_obj
(
process
,
handle
,
access
,
&
event_ops
);
}
void
pulse_event
(
struct
event
*
event
)
...
...
server/file.c
View file @
61ec6c1c
...
...
@@ -371,11 +371,9 @@ void file_set_error(void)
}
}
struct
file
*
get_file_obj
(
struct
process
*
process
,
int
handle
,
unsigned
int
access
)
struct
file
*
get_file_obj
(
struct
process
*
process
,
int
handle
,
unsigned
int
access
)
{
return
(
struct
file
*
)
get_handle_obj
(
current
->
process
,
handle
,
access
,
&
file_ops
);
return
(
struct
file
*
)
get_handle_obj
(
process
,
handle
,
access
,
&
file_ops
);
}
int
file_get_mmap_fd
(
struct
file
*
file
)
...
...
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