OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.
os.kill() method in Python is used to send specified signal to the process with specified process id. Constants for the specific signals available on the host platform are defined in the signal module.
Syntax: os.kill(pid, sig)
Parameters:
pid: An integer value representing process id to which signal is to be sent.
sig An integer representing signal number or the signal constant available on the host platform defined in the signal module to be sent.
Return type: This method does not return any value.
Code: Use of os.kill() method
Python3
import os, signal
pid = os.fork()
if pid :
print ( "\nIn parent process" )
os.kill(pid, signal.SIGSTOP)
print ( "Signal sent, child stopped." )
info = os.waitpid(pid, os.WSTOPPED)
stopSignal = os.WSTOPSIG(info[ 1 ])
print ( "Child stopped due to signal no:" , stopSignal)
print ( "Signal name:" , signal.Signals(stopSignal).name)
os.kill(pid, signal.SIGCONT)
print ( "\nSignal sent, child continued." )
else :
print ( "\nIn child process" )
print ( "Process ID:" , os.getpid())
print ( "Hello ! Geeks" )
print ( "Exiting" )
|
OUTPUT:
In parent process
Signal sent, child stopped.
Child stopped due to signal no: 19
Signal name: SIGSTOP
Signal sent, child continued.
In child process
Process ID: 23
Hello ! Geeks
Exiting
References: https://docs.python.org/3/library/os.html#os.kill
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
18 Oct, 2022
Like Article
Save Article