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
6adcad49
Commit
6adcad49
authored
May 05, 2015
by
André Hentschel
Committed by
Alexandre Julliard
May 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Allow 32-bit connections on ARM64.
parent
e5bc217e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
process.h
server/process.h
+1
-1
thread.c
server/thread.c
+1
-1
No files found.
server/process.h
View file @
6adcad49
...
...
@@ -107,7 +107,7 @@ struct process_snapshot
};
#define CPU_FLAG(cpu) (1 << (cpu))
#define CPU_64BIT_MASK
CPU_FLAG(CPU_x86_64
)
#define CPU_64BIT_MASK
(CPU_FLAG(CPU_x86_64) | CPU_FLAG(CPU_ARM64)
)
/* process functions */
...
...
server/thread.c
View file @
6adcad49
...
...
@@ -62,7 +62,7 @@ static const unsigned int supported_cpus = CPU_FLAG(CPU_POWERPC);
#elif defined(__arm__)
static
const
unsigned
int
supported_cpus
=
CPU_FLAG
(
CPU_ARM
);
#elif defined(__aarch64__)
static
const
unsigned
int
supported_cpus
=
CPU_FLAG
(
CPU_ARM64
);
static
const
unsigned
int
supported_cpus
=
CPU_FLAG
(
CPU_ARM64
)
|
CPU_FLAG
(
CPU_ARM
)
;
#else
#error Unsupported CPU
#endif
...
...
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