當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.get_blocking()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.get_blocking() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。