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
dee10199
Commit
dee10199
authored
Jan 17, 2024
by
Marc-Aurel Zent
Committed by
Alexandre Julliard
Feb 14, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Use bootstrap_register2() instead of bootstrap_register().
parent
52f34cf9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
mach.c
server/mach.c
+3
-1
No files found.
server/mach.c
View file @
dee10199
...
...
@@ -93,6 +93,8 @@ static int is_rosetta( void )
return
rosetta_status
;
}
extern
kern_return_t
bootstrap_register2
(
mach_port_t
bp
,
name_t
service_name
,
mach_port_t
sp
,
uint64_t
flags
);
/* initialize the process control mechanism */
void
init_tracing_mechanism
(
void
)
{
...
...
@@ -107,7 +109,7 @@ void init_tracing_mechanism(void)
server_mach_port
,
MACH_MSG_TYPE_MAKE_SEND
)
!=
KERN_SUCCESS
)
fatal_error
(
"Error inserting rights
\n
"
);
if
(
bootstrap_register
(
bp
,
server_dir
,
server_mach_port
)
!=
KERN_SUCCESS
)
if
(
bootstrap_register
2
(
bp
,
server_dir
,
server_mach_port
,
0
)
!=
KERN_SUCCESS
)
fatal_error
(
"Can't check in server_mach_port
\n
"
);
mach_port_deallocate
(
mach_task_self
(),
bp
);
}
...
...
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