Remove comment about job_iterator_t being used from signal handlers

It is no longer used from signal handlers, and has not been for a while
This commit is contained in:
ridiculousfish 2017-01-22 00:59:50 -08:00
parent 6bdab62358
commit f4476100f2

View file

@ -249,8 +249,7 @@ typedef std::list<job_t *> job_list_t;
bool job_list_is_empty(void);
/// A class to aid iteration over jobs list. Note this is used from a signal handler, so it must be
/// careful to not allocate memory.
/// A class to aid iteration over jobs list
class job_iterator_t {
job_list_t *const job_list;
job_list_t::iterator current, end;