Python的tcsetpgrp()
方法将与fd
(os.open()
函数返回的打开的文件描述符)给定的终端相关联的进程组设置为pg
。
语法
以下是tcsetpgrp()
方法的语法 -
os.tcsetpgrp(fd, pg)
参数
- fd - 这是文件描述符。
- pg - 这将进程组设置的
pg
。
返回值
此方法返回进程组。
示例
以下示例显示了tcsetpgrp()
方法的用法。
# !/usr/bin/python3
import os, sys
# Showing current directory
print ("Current working dir :%s" %os.getcwd())
# Changing dir to /dev/tty
fd = os.open("/dev/tty",os.O_RDONLY)
f = os.tcgetpgrp(fd)
# Showing the process group
print ("the process group associated is: ")
print (f)
# Setting the process group
os.tcsetpgrp(fd,2672)
print ("done")
os.close(fd)
print ("Closed the file successfully!!")
当运行上述程序时,它将在/tmp
目录中创建一个符号链接,如下所示: -
Current working dir is :/tmp
the process group associated is:
2672
done
Closed the file successfully!!