Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ae42aad2
Commit
ae42aad2
authored
May 05, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize ntdll debugging earlier on so that we can trace the server
startup too.
parent
ab92cfe0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
debugtools.c
dlls/ntdll/debugtools.c
+3
-0
loader.c
dlls/ntdll/loader.c
+0
-2
No files found.
dlls/ntdll/debugtools.c
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 */
}
dlls/ntdll/loader.c
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
);
...
...
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