| 369 | ******************************/ |
| 370 | |
| 371 | static ProtectedJob *get_known(int id) |
| 372 | { |
| 373 | TKnownJobs::iterator it = known_jobs.find(id); |
| 374 | return (it != known_jobs.end()) ? it->second : NULL; |
| 375 | } |
| 376 | |
| 377 | static bool isSupportedJob(df::job *job) |
| 378 | { |
no test coverage detected