Method code for $mutex.cleanup_dead_tasks()

[Turn on line numbering]
var t, i, j;

t = tasks();
for i in (tasks.keys()) {
    if (!(i in t)) {
        for j in (tasks[i])
            ._del_from_lock(i, j);
        tasks = tasks.del(i);
    }
}

["// Created 11-Mar-1997 as a part of ColdCore, see: @help Credit"]

the Cold Dark