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


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


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

在UNIX-like操作系统中,进程组表示一个或多个进程的集合。它用于控制信号的分配,即,将信号定向到流程组时,流程组的每个成员都接收该信号。使用进程组ID唯一标识每个进程组。
os.tcgetpgrp()Python中的方法用于获取与指定文件描述符所指定的终端相关联的进程组。指定的文件描述符应该是打开的文件描述符,由os.open()方法。


注意: os.tcgetpgrp()该方法仅在UNIX平台上可用。

用法: os.tcgetpgrp(fd)

参数:
fd:与终端关联的文件描述符。

返回类型:此方法返回一个整数值,该整数值表示与指定文件描述符给定的终端相关联的进程组ID。

代码:os.tcgetpgrp()方法的使用
# Python program to explain os.tcgetpgrp() method  
  
# importing os module  
import os 
  
  
# Get the/dev/tty file 
# and get the file descriptor 
# associated with it  
# using os.open() method 
  
# '/dev / tty' is a special file 
# which represents the 
# controlling terminal of  
# the current process 
fd = os.open("/dev/tty", os.O_RDWR) 
  
  
# Get the process group associated 
# with the terminal given by 
# the specified file descriptor 
# using os.tcgetpgrp() method 
pgid = os.tcgetpgrp(fd) 
  
# Print the process group 
# associated with the controlling 
# terminal of the current process 
print("Process group associated with controlling\n \ 
         terminal of the current process:", pgid) 
  
# Close the file descriptor 
os.close(fd)
输出:
Process group associated with controlling
terminal of the current process:19787


相关用法


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