diff options
author | Bastien Nocera <hadess@hadess.net> | 2015-09-28 18:20:20 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2018-10-21 14:43:27 +0200 |
commit | d352f6e681ab6510da4657f0e066c75ed60b86ba (patch) | |
tree | c4621ce588c07255fa2983d624307fcad4a696fd /libsoup/soup-io-stream.c | |
parent | f4174fbc9357d1b0558f7ec4c0ae38c64aee03ed (diff) | |
download | libsoup-wip/hadess/reverse-http.tar.gz |
all: Add source tags for all the GTaskswip/hadess/reverse-http
This might make it easier to debug async tasks, when necessary.
Diffstat (limited to 'libsoup/soup-io-stream.c')
-rw-r--r-- | libsoup/soup-io-stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsoup/soup-io-stream.c b/libsoup/soup-io-stream.c index 9c77b267..dded540f 100644 --- a/libsoup/soup-io-stream.c +++ b/libsoup/soup-io-stream.c @@ -160,6 +160,7 @@ soup_io_stream_close_async (GIOStream *stream, GTask *task; task = g_task_new (stream, cancellable, callback, user_data); + g_task_set_source_tag (task, soup_io_stream_close_async); g_io_stream_close_async (SOUP_IO_STREAM (stream)->priv->base_iostream, io_priority, cancellable, close_async_complete, task); |