Clean up Node, then clean up our cgroup
( self )
| 756 | return Host.popen( self, *args, mncmd=mncmd, **kwargs ) |
| 757 | |
| 758 | def cleanup( self ): |
| 759 | "Clean up Node, then clean up our cgroup" |
| 760 | super( CPULimitedHost, self ).cleanup() |
| 761 | retry( retries=3, delaySecs=.1, fn=self.cgroupDel ) |
| 762 | |
| 763 | _rtGroupSched = False # internal class var: Is CONFIG_RT_GROUP_SCHED set? |
| 764 |