当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.getsid()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

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


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

用法: os.getsid(pid)

参数:
pid:一个整数值,表示需要其会话ID的进程的进程ID。

返回类型:此方法返回一个整数值,该整数值表示与指定进程ID相关联的进程的会话ID。

代码: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() method output



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.getsid() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。