mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-14 05:16:18 +01:00
gtask: Include task name in complete_in_idle_cb source name
`complete_in_idle_cb()` shows up in a lot of sysprof traces, so it’s quite useful to include the most specific contextual information we can in it. Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
bfe161742c
commit
6f281ce2e5
@ -1241,6 +1241,7 @@ g_task_return (GTask *task,
|
|||||||
GTaskReturnType type)
|
GTaskReturnType type)
|
||||||
{
|
{
|
||||||
GSource *source;
|
GSource *source;
|
||||||
|
gchar *source_name = NULL;
|
||||||
|
|
||||||
if (type != G_TASK_RETURN_FROM_THREAD)
|
if (type != G_TASK_RETURN_FROM_THREAD)
|
||||||
task->ever_returned = TRUE;
|
task->ever_returned = TRUE;
|
||||||
@ -1289,7 +1290,10 @@ g_task_return (GTask *task,
|
|||||||
|
|
||||||
/* Otherwise, complete in the next iteration */
|
/* Otherwise, complete in the next iteration */
|
||||||
source = g_idle_source_new ();
|
source = g_idle_source_new ();
|
||||||
g_source_set_name (source, "[gio] complete_in_idle_cb");
|
source_name = g_strdup_printf ("[gio] %s complete_in_idle_cb",
|
||||||
|
(task->name != NULL) ? task->name : "(unnamed)");
|
||||||
|
g_source_set_name (source, source_name);
|
||||||
|
g_free (source_name);
|
||||||
g_task_attach_source (task, source, complete_in_idle_cb);
|
g_task_attach_source (task, source, complete_in_idle_cb);
|
||||||
g_source_unref (source);
|
g_source_unref (source);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user