mirror of https://github.com/xemu-project/xemu.git
qio: rename qio_task_thread_result
It is strange that it was called gio_task_thread_result. Rename it to follow the naming rule of the file. Reviewed-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
f2bb2d14c2
commit
7c28768fef
|
@ -80,7 +80,7 @@ struct QIOTaskThreadData {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static gboolean gio_task_thread_result(gpointer opaque)
|
static gboolean qio_task_thread_result(gpointer opaque)
|
||||||
{
|
{
|
||||||
struct QIOTaskThreadData *data = opaque;
|
struct QIOTaskThreadData *data = opaque;
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ static gpointer qio_task_thread_worker(gpointer opaque)
|
||||||
* the worker results
|
* the worker results
|
||||||
*/
|
*/
|
||||||
trace_qio_task_thread_exit(data->task);
|
trace_qio_task_thread_exit(data->task);
|
||||||
g_idle_add(gio_task_thread_result, data);
|
g_idle_add(qio_task_thread_result, data);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue