📜  Python| os.getsid() 方法

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

Python| os.getsid() 方法

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

os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError

Python中的os.getsid()方法用于获取与指定进程 id 关联的进程的会话 id。

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

代码: os.getsid() 方法的使用
# Python program to explain os.getsid() method 
  
# importing os module 
import os
  
# Get the session id
# of the current process
# using os.getsid() method
  
# 0 as pid represents the
# calling process
pid = 0 
sid = os.getsid(pid)
  
# Print the session id
# of the current process
print("Session id of the current process:", sid)
  
  
pid = 10
# Get the session id
# of the process associated with
# the specified pid
# using os.getsid() method
sid = os.getsid(pid)
  
# Print the session id
print("Session id of the process whose process id is % d:" % pid, sid)

输出:
os.getsid() 方法输出