Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
6c02f660
Commit
6c02f660
authored
Feb 20, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Mar 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove SPARC support.
parent
56dbef9b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
9 deletions
+0
-9
Makefile.in
dlls/ntdll/Makefile.in
+0
-1
nt.c
dlls/ntdll/nt.c
+0
-7
signal_sparc.c
dlls/ntdll/signal_sparc.c
+0
-0
virtual.c
dlls/ntdll/virtual.c
+0
-1
No files found.
dlls/ntdll/Makefile.in
View file @
6c02f660
...
...
@@ -41,7 +41,6 @@ C_SRCS = \
signal_arm64.c
\
signal_i386.c
\
signal_powerpc.c
\
signal_sparc.c
\
signal_x86_64.c
\
string.c
\
sync.c
\
...
...
dlls/ntdll/nt.c
View file @
6c02f660
...
...
@@ -1111,13 +1111,6 @@ static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
info
->
Architecture
=
PROCESSOR_ARCHITECTURE_ARM
;
}
#elif defined(__sparc__)
static
inline
void
get_cpuinfo
(
SYSTEM_CPU_INFORMATION
*
info
)
{
info
->
Architecture
=
PROCESSOR_ARCHITECTURE_SPARC
;
}
#endif
/* End architecture specific feature detection for CPUs */
/******************************************************************
...
...
dlls/ntdll/signal_sparc.c
deleted
100644 → 0
View file @
56dbef9b
This diff is collapsed.
Click to expand it.
dlls/ntdll/virtual.c
View file @
6c02f660
...
...
@@ -1085,7 +1085,6 @@ static NTSTATUS check_architecture( const IMAGE_NT_HEADERS *nt )
case
IMAGE_FILE_MACHINE_ARM
:
arch
=
"ARM"
;
break
;
case
IMAGE_FILE_MACHINE_ARMNT
:
arch
=
"ARMNT"
;
break
;
case
IMAGE_FILE_MACHINE_THUMB
:
arch
=
"ARM Thumb"
;
break
;
case
IMAGE_FILE_MACHINE_SPARC
:
arch
=
"SPARC"
;
break
;
default:
arch
=
wine_dbg_sprintf
(
"Unknown-%04x"
,
nt
->
FileHeader
.
Machine
);
break
;
}
ERR
(
"Trying to load PE image for unsupported architecture %s
\n
"
,
arch
);
...
...
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