OS File 中的 os.tcsetpgrp(fd, pg)函

首页 / Python2入门教程 / OS File 中的 os.tcsetpgrp(fd, pg)函

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!!

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

如何设计一个秒杀系统 -〔许令波〕

MySQL实战45讲 -〔林晓斌〕

玩转Spring全家桶 -〔丁雪丰〕

Java并发编程实战 -〔王宝令〕

从0打造音视频直播系统 -〔李超〕

.NET Core开发实战 -〔肖伟宇〕

分布式数据库30讲 -〔王磊〕

跟着高手学复盘 -〔张鹏〕

陶辉的网络协议集训班02期 -〔陶辉〕

好记忆不如烂笔头。留下您的足迹吧 :)