无涯教程-OS File - os.tcsetpgrp(fd, pg)函数

80 阅读1分钟

Python方法tcsetpgrp()将与fd(由os.open()返回的打开文件描述符)给定的终端相关联的进程组设置为pg。

os.tcsetpgrp(fd, pg) - 语法

os.tcsetpgrp(fd, pg)
  • fd   -  这是文件描述符。

  • pg   -  将进程组设置为pg。

os.tcsetpgrp(fd, pg) - 示例

以下示例显示tcsetpgrp()方法的用法。

# !/usr/bin/python

import os, sys

# 显示当前目录 print "Current working dir :%s" %os.getcwd()

# 将目录更改为 /dev/tty fd=os.open("/dev/tty",os.O_RDONLY)

f=os.tcgetpgrp(fd)

# 显示进程组 print "the process group associated is: " print f

# 设置进程组 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!!

参考链接

www.learnfk.com/python/os-t…