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
693a3cd0
Commit
693a3cd0
authored
Apr 12, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create the devices earlier on during startup.
parent
c420138d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
kernel_main.c
dlls/kernel/kernel_main.c
+0
-4
process.c
dlls/kernel/process.c
+4
-0
No files found.
dlls/kernel/kernel_main.c
View file @
693a3cd0
...
@@ -50,7 +50,6 @@ extern void LOCALE_InitRegistry(void);
...
@@ -50,7 +50,6 @@ extern void LOCALE_InitRegistry(void);
extern
void
COMPUTERNAME_Init
(
void
);
extern
void
COMPUTERNAME_Init
(
void
);
extern
int
__wine_set_signal_handler
(
unsigned
,
int
(
*
)(
unsigned
));
extern
int
__wine_set_signal_handler
(
unsigned
,
int
(
*
)(
unsigned
));
extern
void
VOLUME_CreateDevices
(
void
);
/* memory/environ.c */
/* memory/environ.c */
extern
void
ENV_CopyStartupInformation
(
void
);
extern
void
ENV_CopyStartupInformation
(
void
);
...
@@ -127,9 +126,6 @@ static BOOL process_attach(void)
...
@@ -127,9 +126,6 @@ static BOOL process_attach(void)
/* Setup computer name */
/* Setup computer name */
COMPUTERNAME_Init
();
COMPUTERNAME_Init
();
/* Create device symlinks */
VOLUME_CreateDevices
();
/* copy process information from ntdll */
/* copy process information from ntdll */
ENV_CopyStartupInformation
();
ENV_CopyStartupInformation
();
...
...
dlls/kernel/process.c
View file @
693a3cd0
...
@@ -83,6 +83,7 @@ static const WCHAR batW[] = {'.','b','a','t',0};
...
@@ -83,6 +83,7 @@ static const WCHAR batW[] = {'.','b','a','t',0};
static
const
WCHAR
winevdmW
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
'v'
,
'd'
,
'm'
,
'.'
,
'e'
,
'x'
,
'e'
,
0
};
static
const
WCHAR
winevdmW
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
'v'
,
'd'
,
'm'
,
'.'
,
'e'
,
'x'
,
'e'
,
0
};
extern
void
SHELL_LoadRegistry
(
void
);
extern
void
SHELL_LoadRegistry
(
void
);
extern
void
VOLUME_CreateDevices
(
void
);
extern
void
VERSION_Init
(
const
WCHAR
*
appname
);
extern
void
VERSION_Init
(
const
WCHAR
*
appname
);
extern
void
LOCALE_Init
(
void
);
extern
void
LOCALE_Init
(
void
);
...
@@ -741,6 +742,9 @@ static BOOL process_init( char *argv[], char **environ )
...
@@ -741,6 +742,9 @@ static BOOL process_init( char *argv[], char **environ )
/* registry initialisation */
/* registry initialisation */
SHELL_LoadRegistry
();
SHELL_LoadRegistry
();
/* Create device symlinks */
VOLUME_CreateDevices
();
/* global boot finished, the rest is process-local */
/* global boot finished, the rest is process-local */
SERVER_START_REQ
(
boot_done
)
SERVER_START_REQ
(
boot_done
)
{
{
...
...
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