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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。