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
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
Alexey Alyaev
wine
Commits
cdcb2036
Commit
cdcb2036
authored
19 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
19 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Call remove_process_locks when a process ends, fix declarations.
parent
fc51a268
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
server/file.h
+1
-1
1 addition, 1 deletion
server/file.h
server/handle.h
+1
-0
1 addition, 0 deletions
server/handle.h
server/process.c
+1
-0
1 addition, 0 deletions
server/process.c
with
3 additions
and
1 deletion
server/file.h
+
1
−
1
View file @
cdcb2036
...
...
@@ -59,7 +59,6 @@ extern int check_fd_events( struct fd *fd, int events );
extern
void
set_fd_events
(
struct
fd
*
fd
,
int
events
);
extern
obj_handle_t
lock_fd
(
struct
fd
*
fd
,
file_pos_t
offset
,
file_pos_t
count
,
int
shared
,
int
wait
);
extern
void
unlock_fd
(
struct
fd
*
fd
,
file_pos_t
offset
,
file_pos_t
count
);
extern
int
flush_cached_fd
(
struct
process
*
process
,
obj_handle_t
handle
);
extern
int
default_fd_add_queue
(
struct
object
*
obj
,
struct
wait_queue_entry
*
entry
);
extern
void
default_fd_remove_queue
(
struct
object
*
obj
,
struct
wait_queue_entry
*
entry
);
...
...
@@ -73,6 +72,7 @@ extern int no_get_file_info( struct fd *fd );
extern
void
no_queue_async
(
struct
fd
*
fd
,
void
*
apc
,
void
*
user
,
void
*
io_sb
,
int
type
,
int
count
);
extern
void
no_cancel_async
(
struct
fd
*
fd
);
extern
void
main_loop
(
void
);
extern
void
remove_process_locks
(
struct
process
*
process
);
inline
static
struct
fd
*
get_obj_fd
(
struct
object
*
obj
)
{
return
obj
->
ops
->
get_fd
(
obj
);
}
...
...
This diff is collapsed.
Click to expand it.
server/handle.h
+
1
−
0
View file @
cdcb2036
...
...
@@ -49,6 +49,7 @@ extern obj_handle_t find_inherited_handle( struct process *process, const struct
extern
struct
handle_table
*
alloc_handle_table
(
struct
process
*
process
,
int
count
);
extern
struct
handle_table
*
copy_handle_table
(
struct
process
*
process
,
struct
process
*
parent
);
extern
unsigned
int
get_handle_table_count
(
struct
process
*
process
);
extern
int
flush_cached_fd
(
struct
process
*
process
,
obj_handle_t
handle
);
extern
void
close_global_handles
(
void
);
...
...
This diff is collapsed.
Click to expand it.
server/process.c
+
1
−
0
View file @
cdcb2036
...
...
@@ -424,6 +424,7 @@ static void process_destroy( struct object *obj )
assert
(
list_empty
(
&
process
->
thread_list
));
set_process_startup_state
(
process
,
STARTUP_ABORTED
);
remove_process_locks
(
process
);
if
(
process
->
console
)
release_object
(
process
->
console
);
if
(
process
->
parent
)
release_object
(
process
->
parent
);
if
(
process
->
msg_fd
)
release_object
(
process
->
msg_fd
);
...
...
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