Python os.tcgetpgrp() - 获取与指定文件描述符所给出的终端相关联的进程组

Python os.tcgetpgrp()

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

在类unix操作系统中,进程组表示一个或多个进程的集合。它用于控制信号的分布,即当一个信号被定向到一个进程组时,进程组的每个成员都接收到该信号。使用进程组id唯一标识每个进程组。

Python中的os.tcgetpgrp()方法用于获取与指定文件描述符所给出的终端相关联的进程组。指定的文件描述符应该是os.open()方法返回的打开文件描述符。

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

语法:os.tcgetpgrp(fd)

参数:

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

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

示例1

使用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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程