📜  Python| os.get_blocking() 方法

📅  最后修改于: 2022-05-13 01:55:32.313000             🧑  作者: Mango

Python| os.get_blocking() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.get_blocking()方法用于获取指定文件描述符的阻塞模式信息。

如果未设置 os.O_NONBLOCK 标志,则此方法返回 True,这意味着指定的文件描述符处于阻塞模式;如果设置os.O_NONBLOCK标志,则此方法返回 False,这意味着指定的文件描述符处于非阻塞模式。

处于阻塞模式的文件描述符意味着 I/O 系统调用(如 read、write 或 connect)可以被系统阻塞。
例如:如果我们在stdin上调用 read 系统调用,那么我们的程序将被阻塞(内核会将进程置于睡眠状态),直到要读取的数据在stdin上实际可用。

注意: os.get_blocking()方法仅在 Unix 平台上可用。

代码:使用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 descriptor is in blocking mode")
else :
    print("File descriptor is in Non-blocking mode")
  
  
# Close the file descriptor
os.close(fd)
输出:
File descriptor is in blocking mode