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
8a64b83e
Commit
8a64b83e
authored
Oct 23, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Oct 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: don't call ExitProcess() before SYSLEVEL_Init().
parent
ea65e29b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
29 deletions
+18
-29
main.h
include/main.h
+1
-1
main.c
loader/main.c
+12
-12
main.c
miscemu/main.c
+3
-15
process.c
scheduler/process.c
+2
-1
No files found.
include/main.h
View file @
8a64b83e
...
...
@@ -8,7 +8,7 @@
#include "windef.h"
extern
void
MAIN_Usage
(
char
*
);
extern
BOOL
MAIN_MainInit
(
void
);
extern
BOOL
MAIN_MainInit
(
int
*
argc
,
char
*
argv
[]
);
extern
BOOL
MAIN_WineInit
(
int
*
argc
,
char
*
argv
[]
);
extern
HINSTANCE
MAIN_WinelibInit
(
int
*
argc
,
char
*
argv
[]
);
extern
int
MAIN_GetLanguageID
(
char
*
lang
,
char
*
country
,
char
*
charset
,
char
*
dialect
);
...
...
loader/main.c
View file @
8a64b83e
...
...
@@ -57,14 +57,20 @@ DEFAULT_DEBUG_CHANNEL(server)
/***********************************************************************
* Main initialisation routine
*/
BOOL
MAIN_MainInit
(
void
)
BOOL
MAIN_MainInit
(
int
*
argc
,
char
*
argv
[]
)
{
/* Create the initial process */
if
(
!
PROCESS_Init
())
return
0
;
/* Set server debug level */
CLIENT_SetDebug
(
TRACE_ON
(
server
)
);
/* Initialize syslevel handling */
SYSLEVEL_Init
();
/* Parse command line arguments */
MAIN_WineInit
(
argc
,
argv
);
/* Load the configuration file */
if
(
!
PROFILE_LoadWineIni
())
return
FALSE
;
...
...
@@ -98,6 +104,10 @@ BOOL MAIN_MainInit(void)
/* Read DOS config.sys */
if
(
!
DOSCONF_ReadConfig
())
return
FALSE
;
/* Initialize KERNEL */
if
(
!
LoadLibrary16
(
"KRNL386.EXE"
))
return
FALSE
;
if
(
!
LoadLibraryA
(
"KERNEL32"
))
return
FALSE
;
return
TRUE
;
}
...
...
@@ -288,18 +298,8 @@ HINSTANCE MAIN_WinelibInit( int *argc, char *argv[] )
OFSTRUCT
ofs
;
HMODULE16
hModule
;
/* Create the initial process */
if
(
!
PROCESS_Init
())
return
0
;
/* Parse command line arguments */
MAIN_WineInit
(
argc
,
argv
);
/* Main initialization */
if
(
!
MAIN_MainInit
())
return
0
;
/* Initialize KERNEL */
if
(
!
LoadLibrary16
(
"KRNL386.EXE"
))
return
0
;
if
(
!
LoadLibraryA
(
"KERNEL32"
))
return
0
;
if
(
!
MAIN_MainInit
(
argc
,
argv
))
return
0
;
/* Create and switch to initial task */
if
(
!
(
wm
=
ELF_CreateDummyModule
(
argv
[
0
],
argv
[
0
]
)))
...
...
miscemu/main.c
View file @
8a64b83e
...
...
@@ -115,25 +115,13 @@ int main( int argc, char *argv[] )
*/
DEBUG_argv0
=
argv
[
0
];
/* Create the initial process */
if
(
!
PROCESS_Init
())
return
FALSE
;
/* Parse command-line */
if
(
!
MAIN_WineInit
(
&
argc
,
argv
))
return
1
;
MAIN_argc
=
argc
;
MAIN_argv
=
argv
;
/* Set up debugger hook */
EXC_SetDebugEventHook
(
wine_debugger
);
if
(
Options
.
debug
)
TASK_AddTaskEntryBreakpoint
=
DEBUG_AddTaskEntryBreakpoint
;
TASK_AddTaskEntryBreakpoint
=
DEBUG_AddTaskEntryBreakpoint
;
/* Initialize everything */
if
(
!
MAIN_MainInit
())
return
1
;
/* Load kernel modules */
if
(
!
LoadLibrary16
(
"KRNL386.EXE"
))
return
1
;
if
(
!
LoadLibraryA
(
"KERNEL32"
))
return
1
;
if
(
!
MAIN_MainInit
(
&
argc
,
argv
))
return
1
;
MAIN_argc
=
argc
;
MAIN_argv
=
argv
;
/* Create initial task */
if
(
!
(
pModule
=
NE_GetPtr
(
GetModuleHandle16
(
"KERNEL"
)
))
)
return
1
;
...
...
scheduler/process.c
View file @
8a64b83e
...
...
@@ -23,6 +23,7 @@
#include "pe_image.h"
#include "task.h"
#include "server.h"
#include "options.h"
#include "callback.h"
#include "debugtools.h"
...
...
@@ -482,7 +483,7 @@ void PROCESS_Start(void)
}
/* If requested, add entry point breakpoint */
if
(
TASK_AddTaskEntryBreakpoint
)
if
(
Options
.
debug
&&
TASK_AddTaskEntryBreakpoint
)
TASK_AddTaskEntryBreakpoint
(
pdb
->
task
);
/* Now call the entry point */
...
...
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