1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2012 Colin Walters <walters@verbum.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef __G_SUBPROCESS_CONTEXT_PRIVATE_H__
20 #define __G_SUBPROCESS_CONTEXT_PRIVATE_H__
22 #include "gsubprocesslauncher.h"
26 struct _GSubprocessLauncher
30 GSubprocessFlags flags
;
31 gboolean path_from_envp
;
45 GArray
*basic_fd_assignments
;
46 GArray
*needdup_fd_assignments
;
48 GSpawnChildSetupFunc child_setup_func
;
49 gpointer child_setup_user_data
;
50 GDestroyNotify child_setup_destroy_notify
;
54 void g_subprocess_set_launcher (GSubprocess
*subprocess
,
55 GSubprocessLauncher
*launcher
);