module loghelper.process_helper

Short summary

module pyquickhelper.loghelper.process_helper

Helpers about processes.

source on GitHub

Functions

function

truncated documentation

reap_children

Terminates children processes. Copied from psutil. …

Documentation

Helpers about processes.

source on GitHub

pyquickhelper.loghelper.process_helper.reap_children(timeout=3, subset=None, fLOG=<function fLOG>)[source]

Terminates children processes. Copied from psutil. Tries hard to terminate and ultimately kill all the children of this process.

Parameters:
  • timeout – time out (seconds)

  • subset – subset of processes to be removed

  • fLOG – logging function

Returns:

killed processes

source on GitHub