Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.WSTOPSIG()
Python中的方法用於獲取導致進程停止的信號號。此方法采用流程狀態代碼,由os.wait()
,os.system()
或者os.waitpid()
方法作為參數,並返回導致進程停止的信號號。
用法: os.WSTOPSIG(status)
參數:
status:此參數采用os.system(),os.wait()方法或os.waitpid()方法返回的過程狀態代碼(整數值)。
返回類型:此方法返回一個整數值,該整數值表示導致進程停止的信號號。
代碼:用於os.WSTOPSIG()
方法
# Python program to explain os.WSTOPSIG() method
# importing os and signal module
import os, signal
# Create a child process
# using os.fork() method
pid = os.fork()
# pid greater than 0
# indicates the parent process
if pid:
# send signal 'SIGSTOP'
# to the child process
# using os.kill() method
# 'SIGSTOP' signal will
# cause the process to stop
os.kill(pid, signal.SIGSTOP)
# get the child's pid
# and status code
# using os.waitpid() method
info = os.waitpid(pid, os.WSTOPPED)
# os.waitpid() method
# returns a tuple which
# represents child's pid
# and exit status code
print("\nIn parent process")
# Get the signal number due
# to which child process stopped
# using os.WSTOPSIG() method
stopSignal = os.WSTOPSIG(info[1])
print("Child stopped due to signal no:", stopSignal)
print("Signal name:", signal.Signals(stopSignal).name)
else :
print("In child process")
print("Process ID:", os.getpid())
print("Hello ! Geeks")
print("Exiting")
輸出:
In Child process In parent process Child stopped due to signal no:19 Signal name:SIGSTOP
參考文獻: https://docs.python.org/3/library/os.html#os.WSTOPSIG
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.WSTOPSIG() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。