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