Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.WIFSTOPPED()
Python中的方法用於檢查進程是否已停止。此方法采用流程狀態代碼,由os.wait()
,os.system()
或者os.waitpid()
方法作為參數,如果進程已停止,則返回True,否則返回False。
用法: os.WIFSTOPPED(status)
參數:
status:此參數采用os.system(),os.wait()方法或os.waitpid()方法返回的過程狀態代碼(整數值)。
返回類型:此方法返回“布爾”類的布爾值。如果進程已停止,則此方法返回True,否則返回False。
代碼:用於os.WIFSTOPPED()
方法
# Python program to explain os.WIFSTOPPED() 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 child process
# using os.kill() method
# signal will cause the child
# 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)
# info is a tuple
# info[0] represents child's pid
# info[1] represents exit status code
print("\nIn parent process")
# Check whether the child process
# has been stopped or not
# using os.WIFSTOPPED() method
isStopped = os.WIFSTOPPED(info[1])
print("Has child process been stopped?")
print(isStopped)
else :
print("In Child process")
print("Process ID:", os.getpid())
print("Hello ! Geeks")
輸出:
In Child process Process ID:10224 Hello! Geeks In parent process Has child process been stopped? True
參考文獻: https://docs.python.org/3/library/os.html#os.WIFSTOPPED
相關用法
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python getattr()用法及代碼示例
- Python os.getpgrp()用法及代碼示例
- Python os.fork()用法及代碼示例
- Python os.nice()用法及代碼示例
- Python os.getsid()用法及代碼示例
- Python os.setregid()用法及代碼示例
- Python os.pwrite()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.WIFSTOPPED() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。