Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.get_blocking()
Python中的方法用于获取指定文件描述符的阻止模式信息。
如果未设置os.O_NONBLOCK标志(表示指定的文件描述符处于阻塞模式),则此方法返回True;如果设置了os.O_NONBLOCK标志(表示指定的文件描述符处于非阻塞模式),则此方法返回False。
处于阻止模式的文件描述符意味着系统可以阻止I /O系统调用(如读取,写入或连接)。
例如:如果在stdin上调用read system call,则程序将被阻塞(内核会将进程置于睡眠状态),直到要在stdin上实际读取的数据可用为止。
注意: os.get_blocking()
该方法仅在Unix平台上可用。
用法: os.get_blocking(fd)
参数:
fd:一个文件描述符,其阻塞模式信息是必需的。
返回类型:此方法返回“ bool”类的布尔值。 True表示文件描述符处于阻止模式,而False表示文件描述符处于非阻止模式。
代码:使用os.get_blocking()方法获取文件描述符的阻塞模式
# Python program to explain os.get_blocking() method
# importing os module
import os
# File path
path = "/home / ihritik / Documents / file.txt"
# Open the file and get
# the file descriptor associated
# with it using os.open() method
fd = os.open(path, os.O_RDWR)
# Get the blocking mode
# of the file descriptor
# using os.get_blocking() method
mode = os.get_blocking(fd)
if mode == True:
print("File desciptor is in blocking mode")
else :
print("File descriptor is in Non-blocking mode")
# Close the file descriptor
os.close(fd)
输出:
File desciptor is in blocking mode
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.access()用法及代码示例
- Python dict pop()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python os.chdir()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.get_blocking() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。