Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
44ee1c47
Commit
44ee1c47
authored
Aug 13, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineboot: Only use cpuid on platforms where it makes sense.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fc97373f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
wineboot.c
programs/wineboot/wineboot.c
+11
-6
No files found.
programs/wineboot/wineboot.c
View file @
44ee1c47
...
...
@@ -185,6 +185,8 @@ static DWORD set_reg_value( HKEY hkey, const WCHAR *name, const WCHAR *value )
return
RegSetValueExW
(
hkey
,
name
,
0
,
REG_SZ
,
(
const
BYTE
*
)
value
,
(
lstrlenW
(
value
)
+
1
)
*
sizeof
(
WCHAR
)
);
}
#if defined(__i386__) || defined(__x86_64__)
#if defined(_MSC_VER)
static
void
do_cpuid
(
unsigned
int
ax
,
unsigned
int
*
p
)
{
...
...
@@ -205,7 +207,7 @@ __ASM_GLOBAL_FUNC( do_cpuid,
"popl %ebx
\n\t
"
"popl %esi
\n\t
"
"ret"
)
#el
if defined(__x86_64__)
#el
se
extern
void
__cdecl
do_cpuid
(
unsigned
int
ax
,
unsigned
int
*
p
);
__ASM_GLOBAL_FUNC
(
do_cpuid
,
"pushq %rsi
\n\t
"
...
...
@@ -220,11 +222,6 @@ __ASM_GLOBAL_FUNC( do_cpuid,
"popq %rbx
\n\t
"
"popq %rsi
\n\t
"
"ret"
)
#else
static
void
do_cpuid
(
unsigned
int
ax
,
unsigned
int
*
p
)
{
FIXME
(
"
\n
"
);
}
#endif
static
void
regs_to_str
(
unsigned
int
*
regs
,
unsigned
int
len
,
WCHAR
*
buffer
)
...
...
@@ -291,6 +288,14 @@ static void get_namestring( WCHAR *buf )
for
(
i
=
lstrlenW
(
buf
)
-
1
;
i
>=
0
&&
buf
[
i
]
==
' '
;
i
--
)
buf
[
i
]
=
0
;
}
#else
/* __i386__ || __x86_64__ */
static
void
get_identifier
(
WCHAR
*
buf
,
size_t
size
,
const
WCHAR
*
arch
)
{
}
static
void
get_vendorid
(
WCHAR
*
buf
)
{
}
static
void
get_namestring
(
WCHAR
*
buf
)
{
}
#endif
/* __i386__ || __x86_64__ */
/* create the volatile hardware registry keys */
static
void
create_hardware_registry_keys
(
void
)
{
...
...
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