Add an option to allow processes spawn with pipes
[framework/connectivity/connman.git] / include / task.h
index ec68935..2239188 100644 (file)
@@ -45,16 +45,19 @@ typedef void (* connman_task_notify_t) (struct connman_task *task,
 struct connman_task *connman_task_create(const char *program);
 void connman_task_destroy(struct connman_task *task);
 
+const char *connman_task_get_path(struct connman_task *task);
+
 int connman_task_add_argument(struct connman_task *task,
-                               const char *argument, const char *value);
+                               const char *name, const char *format, ...);
 int connman_task_add_variable(struct connman_task *task,
-                               const char *key, const char *value);
+                               const char *key, const char *format, ...);
 
 int connman_task_set_notify(struct connman_task *task, const char *member,
                        connman_task_notify_t function, void *user_data);
 
 int connman_task_run(struct connman_task *task,
-                       connman_task_exit_t function, void *user_data);
+                       connman_task_exit_t function, void *user_data,
+                       int *fd, int *standard_output, int *standard_error);
 int connman_task_stop(struct connman_task *task);
 
 #ifdef __cplusplus