Snapdragon® Telematics Application Framework (TelAF) Interface Specification
le_process.h
Go to the documentation of this file.
1 
48 #ifndef LEGATO_PROCESS_INCLUDE_GUARD
49 #define LEGATO_PROCESS_INCLUDE_GUARD
50 
52 #define LE_PROC_NO_FDS -1
53 
55 typedef struct le_proc_Parameters
56 {
57  const char *executableStr;
58  char *const *argumentsPtr;
59  char *const *environmentPtr;
61  bool detach;
63  int closeFds;
65  void (*init)(const struct le_proc_Parameters *paramPtr);
68  void *userPtr;
74 
84 pid_t le_proc_Execute
85 (
86  const le_proc_Parameters_t *paramPtr
87 );
88 
89 #endif /* end LEGATO_PROCESS_INCLUDE_GUARD */
pid_t le_proc_Execute(const le_proc_Parameters_t *paramPtr)
const char * executableStr
Path to the file to execute.
Definition: le_process.h:57
Definition: le_process.h:55
char *const * argumentsPtr
Definition: le_process.h:58