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
31cf71c2
Commit
31cf71c2
authored
Sep 01, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Fix backend prototypes for PowerPC and Alpha.
parent
8e42dbf7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
be_alpha.c
programs/winedbg/be_alpha.c
+4
-4
be_ppc.c
programs/winedbg/be_ppc.c
+4
-4
No files found.
programs/winedbg/be_alpha.c
View file @
31cf71c2
...
...
@@ -60,25 +60,25 @@ static const struct dbg_internal_var* be_alpha_init_registers(CONTEXT* ctx)
return
be_alpha_ctx
;
}
static
unsigned
be_alpha_is_step_over_insn
(
void
*
insn
)
static
unsigned
be_alpha_is_step_over_insn
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_alpha_is_function_return
(
void
*
insn
)
static
unsigned
be_alpha_is_function_return
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_alpha_is_break_insn
(
void
*
insn
)
static
unsigned
be_alpha_is_break_insn
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_alpha_is_func_call
(
void
*
insn
,
void
**
insn_
callee
)
static
unsigned
be_alpha_is_func_call
(
const
void
*
insn
,
ADDRESS64
*
callee
)
{
return
FALSE
;
}
...
...
programs/winedbg/be_ppc.c
View file @
31cf71c2
...
...
@@ -73,25 +73,25 @@ static const struct dbg_internal_var* be_ppc_init_registers(CONTEXT* ctx)
return
be_ppc_ctx
;
}
static
unsigned
be_ppc_is_step_over_insn
(
void
*
insn
)
static
unsigned
be_ppc_is_step_over_insn
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_ppc_is_function_return
(
void
*
insn
)
static
unsigned
be_ppc_is_function_return
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_ppc_is_break_insn
(
void
*
insn
)
static
unsigned
be_ppc_is_break_insn
(
const
void
*
insn
)
{
dbg_printf
(
"not done
\n
"
);
return
FALSE
;
}
static
unsigned
be_ppc_is_func_call
(
void
*
insn
,
void
**
insn_
callee
)
static
unsigned
be_ppc_is_func_call
(
const
void
*
insn
,
ADDRESS64
*
callee
)
{
return
FALSE
;
}
...
...
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