當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。