Skip to content
Snippets Groups Projects
Commit 9e4c27f9 authored by Moe Jette's avatar Moe Jette
Browse files

add _DEBUG flag to enable more logging

parent d6c40186
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,8 @@ ...@@ -45,6 +45,8 @@
#include "src/common/slurm_protocol_defs.h" #include "src/common/slurm_protocol_defs.h"
#include "src/slurmd/common/proctrack.h" #include "src/slurmd/common/proctrack.h"
#define _DEBUG 0
/* /*
* These variables are required by the generic plugin interface. If they * These variables are required by the generic plugin interface. If they
* are not found in the plugin, the plugin loader will ignore it. * are not found in the plugin, the plugin loader will ignore it.
...@@ -133,6 +135,10 @@ _get_offspring_data(List prec_list, prec_t *ancestor, pid_t pid) { ...@@ -133,6 +135,10 @@ _get_offspring_data(List prec_list, prec_t *ancestor, pid_t pid) {
itr = list_iterator_create(prec_list); itr = list_iterator_create(prec_list);
while((prec = list_next(itr))) { while((prec = list_next(itr))) {
if (prec->ppid == pid) { if (prec->ppid == pid) {
#if _DEBUG
info("pid:%u ppid:%u rss:%u KB",
prec->pid, prec->ppid, prec->rss);
#endif
_get_offspring_data(prec_list, ancestor, prec->pid); _get_offspring_data(prec_list, ancestor, prec->pid);
ancestor->usec += prec->usec; ancestor->usec += prec->usec;
ancestor->ssec += prec->ssec; ancestor->ssec += prec->ssec;
...@@ -306,6 +312,10 @@ static void _get_process_data() { ...@@ -306,6 +312,10 @@ static void _get_process_data() {
itr2 = list_iterator_create(prec_list); itr2 = list_iterator_create(prec_list);
while((prec = list_next(itr2))) { while((prec = list_next(itr2))) {
if (prec->pid == jobacct->pid) { if (prec->pid == jobacct->pid) {
#if _DEBUG
info("pid:%u ppid:%u rss:%u KB",
prec->pid, prec->ppid, prec->rss);
#endif
/* find all my descendents */ /* find all my descendents */
_get_offspring_data(prec_list, _get_offspring_data(prec_list,
prec, prec->pid); prec, prec->pid);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment