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
Sam Joan Roque-Worcel
wine
Commits
ae42aad2
Commit
ae42aad2
authored
20 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Initialize ntdll debugging earlier on so that we can trace the server
startup too.
parent
ab92cfe0
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
dlls/ntdll/debugtools.c
+3
-0
3 additions, 0 deletions
dlls/ntdll/debugtools.c
dlls/ntdll/loader.c
+0
-2
0 additions, 2 deletions
dlls/ntdll/loader.c
with
3 additions
and
2 deletions
dlls/ntdll/debugtools.c
+
3
−
0
View file @
ae42aad2
...
...
@@ -309,9 +309,12 @@ static int NTDLL_dbg_vlog( unsigned int cls, const char *channel,
*/
void
debug_init
(
void
)
{
extern
void
__wine_dbg_ntdll_init
(
void
);
__wine_dbgstr_an
=
NTDLL_dbgstr_an
;
__wine_dbgstr_wn
=
NTDLL_dbgstr_wn
;
__wine_dbg_vsprintf
=
NTDLL_dbg_vsprintf
;
__wine_dbg_vprintf
=
NTDLL_dbg_vprintf
;
__wine_dbg_vlog
=
NTDLL_dbg_vlog
;
__wine_dbg_ntdll_init
();
/* hack: register debug channels early */
}
This diff is collapsed.
Click to expand it.
dlls/ntdll/loader.c
+
0
−
2
View file @
ae42aad2
...
...
@@ -2015,11 +2015,9 @@ void __wine_process_init( int argc, char *argv[] )
NTSTATUS
status
;
ANSI_STRING
func_name
;
void
(
*
DECLSPEC_NORETURN
init_func
)();
extern
void
__wine_dbg_ntdll_init
(
void
);
extern
mode_t
FILE_umask
;
thread_init
();
__wine_dbg_ntdll_init
();
/* hack: register debug channels early */
/* retrieve current umask */
FILE_umask
=
umask
(
0777
);
...
...
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