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
08a60e3c
Kaydet (Commit)
08a60e3c
authored
Mar 13, 2018
tarafından
LarsDW223
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
spawn: Changed confusing macro name, fixes #1256
üst
e4bc8c3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
spawn.c
src/spawn.c
+6
-6
No files found.
src/spawn.c
Dosyayı görüntüle @
08a60e3c
...
...
@@ -99,7 +99,7 @@ static gboolean spawn_parse_argv(const gchar *command_line, gint *argcp, gchar *
}
#endif
#define
G
_IO_FAILURE (G_IO_ERR | G_IO_HUP | G_IO_NVAL)
/* always used together */
#define
SPAWN
_IO_FAILURE (G_IO_ERR | G_IO_HUP | G_IO_NVAL)
/* always used together */
/*
...
...
@@ -892,7 +892,7 @@ static gboolean spawn_write_cb(GIOChannel *channel, GIOCondition condition, gpoi
if
(
!
sc
->
cb
.
write
(
channel
,
condition
,
sc
->
cb_data
))
return
FALSE
;
return
!
(
condition
&
G
_IO_FAILURE
);
return
!
(
condition
&
SPAWN
_IO_FAILURE
);
}
...
...
@@ -912,7 +912,7 @@ static gboolean spawn_read_cb(GIOChannel *channel, GIOCondition condition, gpoin
GString
*
line_buffer
=
sc
->
line_buffer
;
GString
*
buffer
=
sc
->
buffer
?
sc
->
buffer
:
g_string_sized_new
(
sc
->
max_length
);
GIOCondition
input_cond
=
condition
&
(
G_IO_IN
|
G_IO_PRI
);
GIOCondition
failure_cond
=
condition
&
G
_IO_FAILURE
;
GIOCondition
failure_cond
=
condition
&
SPAWN
_IO_FAILURE
;
GIOStatus
status
=
G_IO_STATUS_NORMAL
;
/*
* - Normally, read only once. With IO watches, our data processing must be immediate,
...
...
@@ -1204,7 +1204,7 @@ gboolean spawn_with_callbacks(const gchar *working_directory, const gchar *comma
if
(
i
==
0
)
{
sc
->
cb
.
write
=
stdin_cb
;
condition
=
G_IO_OUT
|
G
_IO_FAILURE
;
condition
=
G_IO_OUT
|
SPAWN
_IO_FAILURE
;
callback
=
(
GSourceFunc
)
spawn_write_cb
;
}
else
...
...
@@ -1212,7 +1212,7 @@ gboolean spawn_with_callbacks(const gchar *working_directory, const gchar *comma
gboolean
line_buffered
=
!
(
spawn_flags
&
((
SPAWN_STDOUT_UNBUFFERED
>>
1
)
<<
i
));
condition
=
G_IO_IN
|
G_IO_PRI
|
G
_IO_FAILURE
;
condition
=
G_IO_IN
|
G_IO_PRI
|
SPAWN
_IO_FAILURE
;
callback
=
(
GSourceFunc
)
spawn_read_cb
;
if
(
i
==
1
)
...
...
@@ -1311,7 +1311,7 @@ gboolean spawn_write_data(GIOChannel *channel, GIOCondition condition, SpawnWrit
}
}
return
data
->
size
>
0
&&
!
(
condition
&
G
_IO_FAILURE
);
return
data
->
size
>
0
&&
!
(
condition
&
SPAWN
_IO_FAILURE
);
}
...
...
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