(self)
| 210 | super(InstanceLimitedThread, self).__init__(*args, **kwargs) |
| 211 | |
| 212 | def start(self): |
| 213 | global limitedNamespaces |
| 214 | |
| 215 | # Will block until the semaphore has free slots. |
| 216 | limitedNamespaces[self.limitNamespace].acquire() |
| 217 | ExitNotifyThread.start(self) |
| 218 | |
| 219 | def run(self): |
| 220 | global limitedNamespaces |
no test coverage detected