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


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