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


Python os.getpgid()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

在UNIX-like操作係統中,進程組表示一個或多個進程的集合。它用於控製信號的分配,即,將信號定向到流程組時,流程組的每個成員都接收該信號。使用進程組ID唯一標識每個進程組。
os.getpgid()Python中的方法用於獲取具有指定進程ID的進程的進程組ID。如果指定的進程ID為0,則返回當前進程的進程組ID。當前進程的進程組ID也可以使用os.getpgrp()方法。


注意: os.getpgid()該方法僅在UNIX平台上可用。

用法: os.getpgid(pid)

參數:
pid:一個整數值,表示要找到其進程組ID的進程的進程ID。如果pid為0,它將代表當前進程。

返回類型:此方法返回一個整數值,該整數值表示具有指定進程ID的進程的進程組ID。

代碼:os.getpgid()方法的使用
# Python program to explain os.getpgid() method  
  
# importing os module  
import os 
  
# Get the process group id  
# of the current process 
# using os.getpgid() method 
pid = os.getpid() 
pgid = os.getpgid(pid) 
  
# Print the process group id 
# of the current process 
print("Process group id of the current process:", pgid) 
  
# If pid is 0, process group id 
# of the current process 
# will be returned  
pid = 0
pgid = os.getpgid(pid) 
print("Process group id of the current process:", pgid) 
  
  
# Get the process group id 
# of the current process  
# using os.getpgrp() method 
pgid = os.getpgrp() 
print("Process group id of the current process:", pgid) 
  
  
# Get the process group id 
# of the parent process 
pid = os.getppid() 
pgid = os.getpgid(pid) 
print("process group id of the parent process:", pgid)
輸出:
Process group id of the current process:18938
Process group id of the current process:18938
Process group id of the current process:18938
process group id of the parent process:11376


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.getpgid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。