mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Don gather results for unallocated api's
This commit is contained in:
@ -938,9 +938,11 @@ 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];
|
||||||
tmp.appfmt(" %s:%s",
|
if(proc.m_proc.m_path != ""){
|
||||||
proc.m_hostname.c_str(),
|
tmp.appfmt(" %s:%s",
|
||||||
proc.m_proc.m_cwd.c_str());
|
proc.m_hostname.c_str(),
|
||||||
|
proc.m_proc.m_cwd.c_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const int r1 = system(tmp.c_str());
|
const int r1 = system(tmp.c_str());
|
||||||
|
Reference in New Issue
Block a user