nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | /* GIO - GLib Input, Output and Streaming Library |
2 | * |
||
3 | * Copyright (C) 2012 Colin Walters <walters@verbum.org> |
||
4 | * |
||
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 of the License, or (at your option) any later version. |
||
9 | * |
||
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. |
||
14 | * |
||
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/>. |
||
17 | */ |
||
18 | |||
19 | #ifndef __G_SUBPROCESS_CONTEXT_PRIVATE_H__ |
||
20 | #define __G_SUBPROCESS_CONTEXT_PRIVATE_H__ |
||
21 | |||
22 | #include "gsubprocesslauncher.h" |
||
23 | |||
24 | G_BEGIN_DECLS |
||
25 | |||
26 | struct _GSubprocessLauncher |
||
27 | { |
||
28 | GObject parent; |
||
29 | |||
30 | GSubprocessFlags flags; |
||
31 | gboolean path_from_envp; |
||
32 | char **envp; |
||
33 | char *cwd; |
||
34 | |||
35 | #ifdef G_OS_UNIX |
||
36 | gint stdin_fd; |
||
37 | gchar *stdin_path; |
||
38 | |||
39 | gint stdout_fd; |
||
40 | gchar *stdout_path; |
||
41 | |||
42 | gint stderr_fd; |
||
43 | gchar *stderr_path; |
||
44 | |||
45 | GArray *basic_fd_assignments; |
||
46 | GArray *needdup_fd_assignments; |
||
47 | |||
48 | GSpawnChildSetupFunc child_setup_func; |
||
49 | gpointer child_setup_user_data; |
||
50 | GDestroyNotify child_setup_destroy_notify; |
||
51 | #endif |
||
52 | }; |
||
53 | |||
54 | void g_subprocess_set_launcher (GSubprocess *subprocess, |
||
55 | GSubprocessLauncher *launcher); |
||
56 | |||
57 | G_END_DECLS |
||
58 | |||
59 | #endif |