Python os.getsid()
Python os模块中的所有函数在文件名和路径无效或不可访问,或其他具有正确类型但操作系统不接受的参数时都会引发OSError。
Python中的os.getsid()方法用于获取与指定进程id相关联的进程的会话id。
注意:os.getsid()方法只在UNIX平台上可用。
语法:os.getsid(pid)
参数:
pid:整型值,表示需要会话id的进程的进程id。
返回类型:该方法返回一个整数值,表示与指定进程id相关联的进程的会话id。
示例1
使用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)
输出: