Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Günther Wagner
gnome-builder
Commits
14342212
Commit
14342212
authored
Jan 16, 2019
by
Christian Hergert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdb: rename helper function to parse variables result
parent
cfbaa300
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/plugins/gdb/gbp-gdb-debugger.c
src/plugins/gdb/gbp-gdb-debugger.c
+7
-7
No files found.
src/plugins/gdb/gbp-gdb-debugger.c
View file @
14342212
...
...
@@ -1887,10 +1887,10 @@ gbp_gdb_debugger_modify_breakpoint_finish (IdeDebugger *debugger,
}
static
void
gbp_gdb_debugger_list_variables
_cb
(
GObject
*
object
,
GAsyncResult
*
result
,
gpointer
user_data
,
gboolean
arguments
)
gbp_gdb_debugger_
handle_
list_variables
(
GObject
*
object
,
GAsyncResult
*
result
,
gpointer
user_data
,
gboolean
arguments
)
{
GbpGdbDebugger
*
self
=
(
GbpGdbDebugger
*
)
object
;
g_autoptr
(
GError
)
error
=
NULL
;
...
...
@@ -1975,7 +1975,7 @@ gbp_gdb_debugger_list_locals_cb (GObject *object,
GAsyncResult
*
result
,
gpointer
user_data
)
{
gbp_gdb_debugger_list_variables
_cb
(
object
,
result
,
user_data
,
FALSE
);
gbp_gdb_debugger_
handle_
list_variables
(
object
,
result
,
user_data
,
FALSE
);
}
static
void
...
...
@@ -1989,8 +1989,8 @@ gbp_gdb_debugger_list_locals_async (IdeDebugger *debugger,
GbpGdbDebugger
*
self
=
(
GbpGdbDebugger
*
)
debugger
;
g_autoptr
(
IdeTask
)
task
=
NULL
;
g_autofree
gchar
*
command
=
NULL
;
guint
depth
;
const
gchar
*
tid
=
NULL
;
guint
depth
;
g_assert
(
GBP_IS_GDB_DEBUGGER
(
self
));
g_assert
(
IDE_IS_DEBUGGER_THREAD
(
thread
));
...
...
@@ -2033,7 +2033,7 @@ gbp_gdb_debugger_list_params_cb (GObject *object,
GAsyncResult
*
result
,
gpointer
user_data
)
{
gbp_gdb_debugger_list_variables
_cb
(
object
,
result
,
user_data
,
TRUE
);
gbp_gdb_debugger_
handle_
list_variables
(
object
,
result
,
user_data
,
TRUE
);
}
static
void
...
...
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