OS File 中的 os.tcgetpgrp(fd)函数

首页 / Python2入门教程 / OS File 中的 os.tcgetpgrp(fd)函数

Python方法tcgetpgrp()返回与fd给定的终端相关联的进程组(由os.open()返回的打开文件描述符)

os.tcgetpgrp(fd) - 语法

os.tcgetpgrp(fd)
  • fd  -  这是文件描述符。

os.tcgetpgrp(fd) - 返回值

此方法返回进程组。

无涯教程网

os.tcgetpgrp(fd) - 示例

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

# !/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.close(fd)
print "Closed the file successfully!!"

当无涯教程运行上面的程序时,它产生以下输出-

链接:https://www.learnfk.comhttps://www.learnfk.com/python/os-tcgetpgrp.html

来源:LearnFk无涯教程网

Current working dir is :/tmp
the process group associated is:
2670
Closed the file successfully!!

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

技术教程推荐

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

研发效率破局之道 -〔葛俊〕

雷蓓蓓的项目管理实战课 -〔雷蓓蓓〕

现代C++编程实战 -〔吴咏炜〕

张汉东的Rust实战课 -〔张汉东〕

如何成为学习高手 -〔高冷冷〕

大数据经典论文解读 -〔徐文浩〕

人人都用得上的数字化思维课 -〔付晓岩〕

结构思考力 · 透过结构看表达 -〔李忠秋〕

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