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
ff84b2f2
Commit
ff84b2f2
authored
Jun 19, 2018
by
Józef Kucia
Committed by
Alexandre Julliard
Jun 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Get rid of ifdefs.
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
29757089
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
16 deletions
+0
-16
be_arm.c
programs/winedbg/be_arm.c
+0
-4
be_arm64.c
programs/winedbg/be_arm64.c
+0
-4
be_ppc.c
programs/winedbg/be_ppc.c
+0
-4
be_x86_64.c
programs/winedbg/be_x86_64.c
+0
-4
No files found.
programs/winedbg/be_arm.c
View file @
ff84b2f2
...
...
@@ -1891,12 +1891,8 @@ static BOOL be_arm_store_integer(const struct dbg_lvalue* lvalue, unsigned size,
static
BOOL
be_arm_get_context
(
HANDLE
thread
,
dbg_ctx_t
*
ctx
)
{
#ifdef __arm__
ctx
->
ctx
.
ContextFlags
=
CONTEXT_ALL
;
return
GetThreadContext
(
thread
,
&
ctx
->
ctx
);
#else
WINE_FIXME
(
"Cannot debug an ARM process on this architecture.
\n
"
);
#endif
}
static
BOOL
be_arm_set_context
(
HANDLE
thread
,
const
dbg_ctx_t
*
ctx
)
...
...
programs/winedbg/be_arm64.c
View file @
ff84b2f2
...
...
@@ -280,12 +280,8 @@ void be_arm64_disasm_one_insn(ADDRESS64 *addr, int display)
static
BOOL
be_arm64_get_context
(
HANDLE
thread
,
dbg_ctx_t
*
ctx
)
{
#ifdef __aarch64__
ctx
->
ctx
.
ContextFlags
=
CONTEXT_ALL
;
return
GetThreadContext
(
thread
,
&
ctx
->
ctx
);
#else
WINE_FIXME
(
"Cannot debug an ARM64 process on this architecture.
\n
"
);
#endif
}
static
BOOL
be_arm64_set_context
(
HANDLE
thread
,
const
dbg_ctx_t
*
ctx
)
...
...
programs/winedbg/be_ppc.c
View file @
ff84b2f2
...
...
@@ -182,12 +182,8 @@ static BOOL be_ppc_store_integer(const struct dbg_lvalue* lvalue, unsigned size,
static
BOOL
be_ppc_get_context
(
HANDLE
thread
,
dbg_ctx_t
*
ctx
)
{
#ifdef __powerpc__
ctx
->
ctx
.
ContextFlags
=
CONTEXT_ALL
;
return
GetThreadContext
(
thread
,
&
ctx
->
ctx
);
#else
WINE_FIXME
(
"Cannot debug a PowerPC process on this architecture.
\n
"
);
#endif
}
static
BOOL
be_ppc_set_context
(
HANDLE
thread
,
const
dbg_ctx_t
*
ctx
)
...
...
programs/winedbg/be_x86_64.c
View file @
ff84b2f2
...
...
@@ -676,12 +676,8 @@ static BOOL be_x86_64_store_integer(const struct dbg_lvalue* lvalue, unsigned si
static
BOOL
be_x86_64_get_context
(
HANDLE
thread
,
dbg_ctx_t
*
ctx
)
{
#ifdef __x86_64__
ctx
->
ctx
.
ContextFlags
=
CONTEXT_ALL
;
return
GetThreadContext
(
thread
,
&
ctx
->
ctx
);
#else
WINE_FIXME
(
"Cannot debug an x86-64 process on this architecture.
\n
"
);
#endif
}
static
BOOL
be_x86_64_set_context
(
HANDLE
thread
,
const
dbg_ctx_t
*
ctx
)
...
...
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