📜  Python| os.tcgetpgrp() 方法

📅  最后修改于: 2022-05-13 01:54:28.236000             🧑  作者: Mango

Python| os.tcgetpgrp() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError

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

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

代码: 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