Python3 os.tcsetpgrp()方法

2019-10-16 23:09:21
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!!"
當我們執行上面的程式,它會產生以下結果:
Current working dir is :/tmp
the process group associated is:
2672
done
Closed the file successfully!!