summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/ptimed_queue.h
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-09-24 07:53:24 +0200
committer couriersud <couriersud@gmx.org>2020-09-24 15:22:23 +0200
commit5a2f41d1a5b1e8186129be01c5d2903fdcd087cf (patch)
tree980732cf57a4dfb805a3a298c3cf8feef05957f4 /src/lib/netlist/plib/ptimed_queue.h
parent1bb99466bcfa188bca00855f80bd6098b0882419 (diff)
netlist: Improve queue handling documentation in code.
* Document that for performance reasons pushes to queue are allowed even if they may not change state and are filtered out during process. * Provide alternative code path. This is currently not used.
Diffstat (limited to 'src/lib/netlist/plib/ptimed_queue.h')
-rw-r--r--src/lib/netlist/plib/ptimed_queue.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/netlist/plib/ptimed_queue.h b/src/lib/netlist/plib/ptimed_queue.h
index dc8db7c9bcc..13631dfe20a 100644
--- a/src/lib/netlist/plib/ptimed_queue.h
+++ b/src/lib/netlist/plib/ptimed_queue.h
@@ -165,6 +165,7 @@ namespace plib {
return;
}
}
+ //printf("Element not found in delete %s\n", elem->name().c_str());
}
template <bool KEEPSTAT, class R>