Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
21314b78
Commit
21314b78
authored
Oct 09, 2009
by
Oswald Buddenhagen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename handleAsyncOutput() => handleStopResponse()
parent
e0f4c4bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/plugins/debugger/gdb/gdbengine.cpp
src/plugins/debugger/gdb/gdbengine.cpp
+2
-2
src/plugins/debugger/gdb/gdbengine.h
src/plugins/debugger/gdb/gdbengine.h
+1
-1
No files found.
src/plugins/debugger/gdb/gdbengine.cpp
View file @
21314b78
...
@@ -424,7 +424,7 @@ void GdbEngine::handleResponse(const QByteArray &buff)
...
@@ -424,7 +424,7 @@ void GdbEngine::handleResponse(const QByteArray &buff)
}
}
}
}
if
(
asyncClass
==
"stopped"
)
{
if
(
asyncClass
==
"stopped"
)
{
handle
AsyncOutput
(
result
);
handle
StopResponse
(
result
);
}
else
if
(
asyncClass
==
"running"
)
{
}
else
if
(
asyncClass
==
"running"
)
{
// Archer has 'thread-id="all"' here
// Archer has 'thread-id="all"' here
}
else
if
(
asyncClass
==
"library-loaded"
)
{
}
else
if
(
asyncClass
==
"library-loaded"
)
{
...
@@ -1014,7 +1014,7 @@ void GdbEngine::handleAqcuiredInferior()
...
@@ -1014,7 +1014,7 @@ void GdbEngine::handleAqcuiredInferior()
}
}
#endif
#endif
void
GdbEngine
::
handle
AsyncOutput
(
const
GdbMi
&
data
)
void
GdbEngine
::
handle
StopResponse
(
const
GdbMi
&
data
)
{
{
const
QByteArray
reason
=
data
.
findChild
(
"reason"
).
data
();
const
QByteArray
reason
=
data
.
findChild
(
"reason"
).
data
();
...
...
src/plugins/debugger/gdb/gdbengine.h
View file @
21314b78
...
@@ -257,7 +257,7 @@ private:
...
@@ -257,7 +257,7 @@ private:
int
terminationIndex
(
const
QByteArray
&
buffer
,
int
&
length
);
int
terminationIndex
(
const
QByteArray
&
buffer
,
int
&
length
);
void
handleResponse
(
const
QByteArray
&
buff
);
void
handleResponse
(
const
QByteArray
&
buff
);
void
handleStart
(
const
GdbResponse
&
response
);
void
handleStart
(
const
GdbResponse
&
response
);
void
handle
AsyncOutput
(
const
GdbMi
&
data
);
void
handle
StopResponse
(
const
GdbMi
&
data
);
void
handleStop1
(
const
GdbResponse
&
response
);
void
handleStop1
(
const
GdbResponse
&
response
);
void
handleStop2
(
const
GdbResponse
&
response
);
void
handleStop2
(
const
GdbResponse
&
response
);
void
handleStop2
(
const
GdbMi
&
data
);
void
handleStop2
(
const
GdbMi
&
data
);
...
...
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