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
81e72d8f
Commit
81e72d8f
authored
May 20, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved all process initialisation code to process.c and removed
loader/main.c.
parent
b3504380
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
102 deletions
+31
-102
Makefile.in
dlls/ntdll/Makefile.in
+0
-1
main.c
loader/main.c
+0
-98
task.c
loader/task.c
+12
-0
process.c
scheduler/process.c
+19
-3
No files found.
dlls/ntdll/Makefile.in
View file @
81e72d8f
...
@@ -18,7 +18,6 @@ C_SRCS = \
...
@@ -18,7 +18,6 @@ C_SRCS = \
$(TOPOBJDIR)
/if1632/relay.c
\
$(TOPOBJDIR)
/if1632/relay.c
\
$(TOPOBJDIR)
/if1632/snoop.c
\
$(TOPOBJDIR)
/if1632/snoop.c
\
$(TOPOBJDIR)
/loader/loadorder.c
\
$(TOPOBJDIR)
/loader/loadorder.c
\
$(TOPOBJDIR)
/loader/main.c
\
$(TOPOBJDIR)
/loader/module.c
\
$(TOPOBJDIR)
/loader/module.c
\
$(TOPOBJDIR)
/loader/pe_image.c
\
$(TOPOBJDIR)
/loader/pe_image.c
\
$(TOPOBJDIR)
/loader/task.c
\
$(TOPOBJDIR)
/loader/task.c
\
...
...
loader/main.c
deleted
100644 → 0
View file @
b3504380
/*
* Main initialization code
*
* Copyright 1998 Ulrich Weigand
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <locale.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdio.h>
#include <string.h>
#ifdef MALLOC_DEBUGGING
# include <malloc.h>
#endif
#include "windef.h"
#include "wine/winbase16.h"
#include "drive.h"
#include "file.h"
#include "options.h"
#include "wine/debug.h"
#include "wine/server.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
server
);
extern
void
SHELL_LoadRegistry
(
void
);
/***********************************************************************
* Main initialisation routine
*/
BOOL
MAIN_MainInit
(
void
)
{
#ifdef MALLOC_DEBUGGING
char
*
trace
;
mcheck
(
NULL
);
if
(
!
(
trace
=
getenv
(
"MALLOC_TRACE"
)))
MESSAGE
(
"MALLOC_TRACE not set. No trace generated
\n
"
);
else
{
MESSAGE
(
"malloc trace goes to %s
\n
"
,
trace
);
mtrace
();
}
#endif
setbuf
(
stdout
,
NULL
);
setbuf
(
stderr
,
NULL
);
setlocale
(
LC_CTYPE
,
""
);
/* Initialise DOS drives */
if
(
!
DRIVE_Init
())
return
FALSE
;
/* Initialise DOS directories */
if
(
!
DIR_Init
())
return
FALSE
;
/* Registry initialisation */
SHELL_LoadRegistry
();
/* Global boot finished, the rest is process-local */
CLIENT_BootDone
(
TRACE_ON
(
server
)
);
return
TRUE
;
}
/***********************************************************************
* ExitKernel (KERNEL.2)
*
* Clean-up everything and exit the Wine process.
*
*/
void
WINAPI
ExitKernel16
(
void
)
{
/* Do the clean-up stuff */
WriteOutProfiles16
();
TerminateProcess
(
GetCurrentProcess
(),
0
);
}
loader/task.c
View file @
81e72d8f
...
@@ -526,6 +526,18 @@ void TASK_ExitTask(void)
...
@@ -526,6 +526,18 @@ void TASK_ExitTask(void)
/***********************************************************************
/***********************************************************************
* ExitKernel (KERNEL.2)
*
* Clean-up everything and exit the Wine process.
*/
void
WINAPI
ExitKernel16
(
void
)
{
WriteOutProfiles16
();
TerminateProcess
(
GetCurrentProcess
(),
0
);
}
/***********************************************************************
* InitTask (KERNEL.91)
* InitTask (KERNEL.91)
*
*
* Called by the application startup code.
* Called by the application startup code.
...
...
scheduler/process.c
View file @
81e72d8f
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <assert.h>
#include <assert.h>
#include <ctype.h>
#include <ctype.h>
#include <locale.h>
#include <errno.h>
#include <errno.h>
#include <fcntl.h>
#include <fcntl.h>
#include <signal.h>
#include <signal.h>
...
@@ -49,6 +50,7 @@
...
@@ -49,6 +50,7 @@
#include "ntdll_misc.h"
#include "ntdll_misc.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
process
);
WINE_DEFAULT_DEBUG_CHANNEL
(
process
);
WINE_DECLARE_DEBUG_CHANNEL
(
server
);
WINE_DECLARE_DEBUG_CHANNEL
(
relay
);
WINE_DECLARE_DEBUG_CHANNEL
(
relay
);
WINE_DECLARE_DEBUG_CHANNEL
(
snoop
);
WINE_DECLARE_DEBUG_CHANNEL
(
snoop
);
WINE_DECLARE_DEBUG_CHANNEL
(
win32
);
WINE_DECLARE_DEBUG_CHANNEL
(
win32
);
...
@@ -134,7 +136,7 @@ extern STARTUPINFOA current_startupinfo;
...
@@ -134,7 +136,7 @@ extern STARTUPINFOA current_startupinfo;
extern
void
PTHREAD_init_done
(
void
);
extern
void
PTHREAD_init_done
(
void
);
extern
void
RELAY_InitDebugLists
(
void
);
extern
void
RELAY_InitDebugLists
(
void
);
extern
BOOL
MAIN_MainInit
(
void
);
extern
void
SHELL_LoadRegistry
(
void
);
extern
void
VERSION_Init
(
const
char
*
appname
);
extern
void
VERSION_Init
(
const
char
*
appname
);
/***********************************************************************
/***********************************************************************
...
@@ -292,6 +294,10 @@ static BOOL process_init( char *argv[] )
...
@@ -292,6 +294,10 @@ static BOOL process_init( char *argv[] )
BOOL
ret
;
BOOL
ret
;
size_t
info_size
=
0
;
size_t
info_size
=
0
;
setbuf
(
stdout
,
NULL
);
setbuf
(
stderr
,
NULL
);
setlocale
(
LC_CTYPE
,
""
);
/* store the program name */
/* store the program name */
argv0
=
argv
[
0
];
argv0
=
argv
[
0
];
...
@@ -372,10 +378,20 @@ static BOOL process_init( char *argv[] )
...
@@ -372,10 +378,20 @@ static BOOL process_init( char *argv[] )
process_pmts
.
CurrentDirectoryName
.
Buffer
[
3
]
=
'\0'
;
process_pmts
.
CurrentDirectoryName
.
Buffer
[
3
]
=
'\0'
;
/* </hack: to be changed later on> */
/* </hack: to be changed later on> */
ret
=
MAIN_MainInit
();
/* initialise DOS drives */
if
(
!
DRIVE_Init
())
return
FALSE
;
/* initialise DOS directories */
if
(
!
DIR_Init
())
return
FALSE
;
/* registry initialisation */
SHELL_LoadRegistry
();
/* global boot finished, the rest is process-local */
CLIENT_BootDone
(
TRACE_ON
(
server
)
);
if
(
TRACE_ON
(
relay
)
||
TRACE_ON
(
snoop
))
RELAY_InitDebugLists
();
if
(
TRACE_ON
(
relay
)
||
TRACE_ON
(
snoop
))
RELAY_InitDebugLists
();
return
ret
;
return
TRUE
;
}
}
...
...
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