Commit 3585e4a4 authored by unknown's avatar unknown

Don gather results for unallocated api's

parent cdc766a8
...@@ -938,10 +938,12 @@ gather_result(atrt_config& config, int * result){ ...@@ -938,10 +938,12 @@ gather_result(atrt_config& config, int * result){
BaseString tmp = g_gather_progname; BaseString tmp = g_gather_progname;
for(size_t i = 0; i<config.m_processes.size(); i++){ for(size_t i = 0; i<config.m_processes.size(); i++){
atrt_process & proc = config.m_processes[i]; atrt_process & proc = config.m_processes[i];
if(proc.m_proc.m_path != ""){
tmp.appfmt(" %s:%s", tmp.appfmt(" %s:%s",
proc.m_hostname.c_str(), proc.m_hostname.c_str(),
proc.m_proc.m_cwd.c_str()); proc.m_proc.m_cwd.c_str());
} }
}
const int r1 = system(tmp.c_str()); const int r1 = system(tmp.c_str());
if(r1 != 0){ if(r1 != 0){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment