Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
175e45ab
Kaydet (Commit)
175e45ab
authored
Şub 16, 2018
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
spawn: Add debugging information when switching to timeout source
üst
29d14b1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
spawn.c
src/spawn.c
+5
-0
No files found.
src/spawn.c
Dosyayı görüntüle @
175e45ab
...
...
@@ -64,8 +64,10 @@
#ifdef SPAWN_TEST
# define _
# define GEANY_API_SYMBOL
# define geany_debug g_debug
#else
# include "support.h"
# include "geany.h"
#endif
#if ! GLIB_CHECK_VERSION(2, 31, 20) && ! defined(G_SPAWN_ERROR_TOO_BIG)
...
...
@@ -1013,6 +1015,9 @@ static gboolean spawn_read_cb(GIOChannel *channel, GIOCondition condition, gpoin
GSource
*
old_source
=
g_main_current_source
();
GSource
*
new_source
=
g_timeout_source_new
(
50
);
geany_debug
(
"Switching spawn source %s ((GSource*)%p on (GIOChannel*)%p) to a timeout source"
,
g_source_get_name
(
old_source
),
(
gpointer
)
old_source
,
(
gpointer
)
sc
->
channel
);
g_io_channel_ref
(
sc
->
channel
);
g_source_set_can_recurse
(
new_source
,
g_source_get_can_recurse
(
old_source
));
g_source_set_callback
(
new_source
,
spawn_timeout_read_cb
,
data
,
spawn_timeout_destroy_cb
);
...
...
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