首页 > Python资料 博客日记

Python os.tcsetpgrp()方法

2023-08-08 17:12:39Python资料围观256

这篇文章介绍了Python os.tcsetpgrp()方法,分享给大家做个参考,收藏Python资料网收获更多编程知识

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

版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐