libdebugger: Fix header order in RemoteDebugRequest.

This commit is contained in:
Rene Gollent
2016-12-05 18:03:13 -05:00
parent ca55f16f03
commit bcca096ae5
2 changed files with 13 additions and 11 deletions
@@ -6,14 +6,16 @@
#include "RemoteDebugRequest.h"
#include "Architecture.h"
#include "CpuState.h"
#include <AutoDeleter.h>
#include <stdlib.h>
#include <Message.h>
#include <stdlib.h>
#include <debugger.h>
#include <AutoDeleter.h>
#include "Architecture.h"
#include "CpuState.h"
// #pragma mark - RemoteDebugRequest
@@ -5,11 +5,11 @@
#ifndef REMOTE_DEBUG_REQUEST_H
#define REMOTE_DEBUG_REQUEST_H
#include "Types.h"
#include <OS.h>
#include <Referenceable.h>
#include <OS.h>
#include "Types.h"
enum remote_request_type {
@@ -23,10 +23,10 @@ enum remote_request_type {
REMOTE_REQUEST_TYPE_SINGLE_STEP_THREAD,
REMOTE_REQUEST_TYPE_GET_CPU_STATE,
REMOTE_REQUEST_TYPE_SET_CPU_STATE,
REMOTE_REQUEST_TYPE_SET_BREAKPOINT,
REMOTE_REQUEST_TYPE_CLEAR_BREAKPOINT,
REMOTE_REQUEST_TYPE_SET_WATCHPOINT,
REMOTE_REQUEST_TYPE_CLEAR_WATCHPOINT,
REMOTE_REQUEST_TYPE_INSTALL_BREAKPOINT,
REMOTE_REQUEST_TYPE_UNINSTALL_BREAKPOINT,
REMOTE_REQUEST_TYPE_INSTALL_WATCHPOINT,
REMOTE_REQUEST_TYPE_UNINSTALL_WATCHPOINT,
REMOTE_REQUEST_TYPE_PREPARE_HANDOVER,
REMOTE_REQUEST_TYPE_WRITE_CORE_FILE,