Use debug_exception_type for the exception type.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33588 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -115,7 +115,7 @@ SingleStepEvent::SingleStepEvent(team_id team, thread_id thread,
|
|||||||
|
|
||||||
|
|
||||||
ExceptionOccurredEvent::ExceptionOccurredEvent(team_id team, thread_id thread,
|
ExceptionOccurredEvent::ExceptionOccurredEvent(team_id team, thread_id thread,
|
||||||
uint32 exception)
|
debug_exception_type exception)
|
||||||
:
|
:
|
||||||
DebugEvent(B_DEBUGGER_MESSAGE_EXCEPTION_OCCURRED, team, thread),
|
DebugEvent(B_DEBUGGER_MESSAGE_EXCEPTION_OCCURRED, team, thread),
|
||||||
fException(exception)
|
fException(exception)
|
||||||
|
|||||||
@@ -92,12 +92,13 @@ public:
|
|||||||
class ExceptionOccurredEvent : public DebugEvent {
|
class ExceptionOccurredEvent : public DebugEvent {
|
||||||
public:
|
public:
|
||||||
ExceptionOccurredEvent(team_id team,
|
ExceptionOccurredEvent(team_id team,
|
||||||
thread_id thread, uint32 exception);
|
thread_id thread,
|
||||||
|
debug_exception_type exception);
|
||||||
|
|
||||||
uint32 Exception() const { return fException; }
|
debug_exception_type Exception() const { return fException; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint32 fException;
|
debug_exception_type fException;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user