| 130 | |
| 131 | // Adds an input. |
| 132 | void add_input(std::shared_ptr<Node> node) LOCKS_EXCLUDED(mu_) { |
| 133 | mutex_lock l(mu_); |
| 134 | inputs_.push_back(node); |
| 135 | } |
| 136 | |
| 137 | // Increments the aggregate processing time by the given delta. |
| 138 | void add_processing_time(int64 delta) LOCKS_EXCLUDED(mu_) { |
nothing calls this directly
no test coverage detected