def suspend(self):
try:
# noinspection PyUnresolvedReferences
self._process.send_signal(signal.SIGSTOP)
except AttributeError:
logger.warning(
'SIGSTOP is not available on this platform'
)