\ SIGTTOU handling. Decreases the number of workers by one.
(self)
| 311 | self.manage_workers() |
| 312 | |
| 313 | def handle_ttou(self): |
| 314 | """\ |
| 315 | SIGTTOU handling. |
| 316 | Decreases the number of workers by one. |
| 317 | """ |
| 318 | if self.num_workers <= 1: |
| 319 | return |
| 320 | self.num_workers -= 1 |
| 321 | self.manage_workers() |
| 322 | |
| 323 | def handle_usr1(self): |
| 324 | """\ |
nothing calls this directly
no test coverage detected