arch_user_debugger: Restore the use of size_t for dr7.
The prior change broke the build with some cryptic "invalid instruction mov" messages. So it must have been correct before.
This commit is contained in:
@@ -101,7 +101,7 @@ struct arch_breakpoint {
|
|||||||
struct arch_team_debug_info {
|
struct arch_team_debug_info {
|
||||||
struct arch_breakpoint breakpoints[X86_BREAKPOINT_COUNT];
|
struct arch_breakpoint breakpoints[X86_BREAKPOINT_COUNT];
|
||||||
|
|
||||||
uint32_t dr7; // debug control register DR7
|
size_t dr7; // debug control register DR7
|
||||||
};
|
};
|
||||||
|
|
||||||
struct arch_thread_debug_info {
|
struct arch_thread_debug_info {
|
||||||
|
|||||||
Reference in New Issue
Block a user