Process.getsid() â integer
Process.getsid(pid) â integer
Process.getsid(pid) â integer
Class Public methods
Returns the session ID for for the given process id. If not give, return current process sid. Not available on all platforms.
Process.getsid() #=> 27422 Process.getsid(0) #=> 27422 Process.getsid(Process.pid()) #=> 27422
Please login to continue.