Definition at line 182 of file logic.cpp.
Public Member Functions | |
s_tmp_file () | |
Public Attributes | |
char | command_args [4096] |
Command arguments. | |
char | command_dir [1024] |
Process's working directory. | |
char | command_line [4096] |
Command line. | |
s_exec_handle * | h |
Handle of process. | |
bool | has_been_run |
true if script has been run (for concurrency detection) | |
bool | script |
Is it a script process? | |
int | script_num |
Number of script (if script==true) - for concurrency detection. | |
char | script_type [128] |
Type of script (e.g. "php"). | |
time_t | start_up_time |
Timestamp when script was run, or zero if it wasn't. |
|
Definition at line 197 of file logic.cpp. References command_args, command_dir, command_line, h, has_been_run, script, script_type, and start_up_time. 00198 { 00199 h=NULL; 00200 script=false; 00201 command_line[0]=0; 00202 command_args[0]=0; 00203 command_dir[0]=0; 00204 has_been_run=false; 00205 memset(script_type,0,sizeof(script_type)); 00206 start_up_time=0; 00207 }
|
|
Command arguments.
Definition at line 191 of file logic.cpp. Referenced by logic_exec_script(), and s_tmp_file(). |
|
Process's working directory.
Definition at line 192 of file logic.cpp. Referenced by logic_exec_script(), and s_tmp_file(). |
|
Command line.
Definition at line 190 of file logic.cpp. Referenced by logic_exec_script(), and s_tmp_file(). |
|
Handle of process.
Definition at line 183 of file logic.cpp. Referenced by logic_exec(), and s_tmp_file(). |
|
true if script has been run (for concurrency detection)
Definition at line 193 of file logic.cpp. Referenced by logic_exec_script(), and s_tmp_file(). |
|
Is it a script process?
Definition at line 184 of file logic.cpp. Referenced by logic_exec(), logic_exec_script(), and s_tmp_file(). |
|
Number of script (if script==true) - for concurrency detection.
Definition at line 186 of file logic.cpp. Referenced by logic_exec_script(). |
|
Type of script (e.g. "php").
Definition at line 188 of file logic.cpp. Referenced by logic_exec_script(), and s_tmp_file(). |
|
Timestamp when script was run, or zero if it wasn't.
Definition at line 195 of file logic.cpp. Referenced by logic_exec(), logic_exec_script(), and s_tmp_file(). |