DACS_ERR_T dacs_de_start ( de_id_t de, void *prog, char const **argv, char const **envv, DACS_PROC_CREATION_FLAG_T creation_flags, dacs_process_id_t *pid )
Call parameters | |
de | The target DE where the program will execute. |
*prog | A pointer to the program text to execute. What this points to is platform-dependent, and also dependent on the creation_flags parameter. |
**argv | A pointer to an array of pointers to argument strings (the argument list), terminated by a NULL pointer. |
**envv | A pointer to an array of pointers to environment variable strings (the environment list), terminated by a NULL pointer. |
creation_flags | An implementation-specific flag that specifies
how the executable program is found. This can be any of:
|
Return parameter | |
*pid | A pointer to a location where the process id is stored on successful return. |
Hybrid DaCS has specific environment variables in the process issuing the dacs_de_start() call. This allows an external program such as a debugging or profiling tool to be started which in turn starts the accelerator process.
DACS_START_PARENT="/usr/bin/gdb --args %e %a"then:
dacs_de_start (de, "myaccel", "myargs", 0, ppid)would launch the command:
/usr/bin/gdb --args myaccel myargs
ENV1=VAL1;ENV2=VAL2;QSHELL_*;ENV3where:
Delete functions, such as <name>= and <prefix>*= to drop environment variables by name or prefix, are not supported in SDK 3.0.