当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.WSTOPSIG()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.WSTOPSIG() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。