summaryrefslogtreecommitdiff
path: root/gio/gsubprocess.h
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2013-10-17 15:01:42 -0400
committerRyan Lortie <desrt@desrt.ca>2013-10-17 15:01:42 -0400
commit542ad4db031273b2ce6416f8909fbff933113ec6 (patch)
tree905a3194f61bb3dbc722ba4f4aa005e4ca217e56 /gio/gsubprocess.h
parent9318d5a4292544f2f7f8f9bc2d805974b3b52c7e (diff)
downloadglib-542ad4db031273b2ce6416f8909fbff933113ec6.tar.gz
Fixup GSubprocess documentation bits
Diffstat (limited to 'gio/gsubprocess.h')
-rw-r--r--gio/gsubprocess.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/gio/gsubprocess.h b/gio/gsubprocess.h
index 71017ed6b..3fd6f1817 100644
--- a/gio/gsubprocess.h
+++ b/gio/gsubprocess.h
@@ -51,76 +51,76 @@ GSubprocess * g_subprocess_newv (const gchar * const *a
GError **error);
GLIB_AVAILABLE_IN_2_40
-GOutputStream * g_subprocess_get_stdin_pipe (GSubprocess *self);
+GOutputStream * g_subprocess_get_stdin_pipe (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-GInputStream * g_subprocess_get_stdout_pipe (GSubprocess *self);
+GInputStream * g_subprocess_get_stdout_pipe (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-GInputStream * g_subprocess_get_stderr_pipe (GSubprocess *self);
+GInputStream * g_subprocess_get_stderr_pipe (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-const gchar * g_subprocess_get_identifier (GSubprocess *self);
+const gchar * g_subprocess_get_identifier (GSubprocess *subprocess);
#ifdef G_OS_UNIX
GLIB_AVAILABLE_IN_2_40
-void g_subprocess_send_signal (GSubprocess *self,
+void g_subprocess_send_signal (GSubprocess *subprocess,
gint signal_num);
#endif
GLIB_AVAILABLE_IN_2_40
-void g_subprocess_force_exit (GSubprocess *self);
+void g_subprocess_force_exit (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_wait (GSubprocess *self,
+gboolean g_subprocess_wait (GSubprocess *subprocess,
GCancellable *cancellable,
GError **error);
GLIB_AVAILABLE_IN_2_40
-void g_subprocess_wait_async (GSubprocess *self,
+void g_subprocess_wait_async (GSubprocess *subprocess,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_wait_finish (GSubprocess *self,
+gboolean g_subprocess_wait_finish (GSubprocess *subprocess,
GAsyncResult *result,
GError **error);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_wait_check (GSubprocess *self,
+gboolean g_subprocess_wait_check (GSubprocess *subprocess,
GCancellable *cancellable,
GError **error);
GLIB_AVAILABLE_IN_2_40
-void g_subprocess_wait_check_async (GSubprocess *self,
+void g_subprocess_wait_check_async (GSubprocess *subprocess,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_wait_check_finish (GSubprocess *self,
+gboolean g_subprocess_wait_check_finish (GSubprocess *subprocess,
GAsyncResult *result,
GError **error);
GLIB_AVAILABLE_IN_2_40
-gint g_subprocess_get_status (GSubprocess *self);
+gint g_subprocess_get_status (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_get_successful (GSubprocess *self);
+gboolean g_subprocess_get_successful (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_get_if_exited (GSubprocess *self);
+gboolean g_subprocess_get_if_exited (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gint g_subprocess_get_exit_status (GSubprocess *self);
+gint g_subprocess_get_exit_status (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gboolean g_subprocess_get_if_signaled (GSubprocess *self);
+gboolean g_subprocess_get_if_signaled (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
-gint g_subprocess_get_term_sig (GSubprocess *self);
+gint g_subprocess_get_term_sig (GSubprocess *subprocess);
GLIB_AVAILABLE_IN_2_40
gboolean g_subprocess_communicate (GSubprocess *subprocess,