本文简要介绍ruby语言中 Process.getsid
的用法。
用法
getsid() → integer
getsid(pid) → integer
返回给定进程 ID 的会话 ID。如果未给出,则返回当前进程 sid。并非在所有平台上都可用。
Process.getsid() #=> 27422
Process.getsid(0) #=> 27422
Process.getsid(Process.pid()) #=> 27422
相关用法
- Ruby Process.getpgrp用法及代码示例
- Ruby Process.getpriority用法及代码示例
- Ruby Process.getpgid用法及代码示例
- Ruby Process.groups用法及代码示例
- Ruby Process.groups=用法及代码示例
- Ruby Process.gid用法及代码示例
- Ruby Process.wait2用法及代码示例
- Ruby Process.setproctitle用法及代码示例
- Ruby Process.setrlimit用法及代码示例
- Ruby Process.uid用法及代码示例
- Ruby Process.pid用法及代码示例
- Ruby Process.detach用法及代码示例
- Ruby Process.maxgroups用法及代码示例
- Ruby Process.clock_gettime用法及代码示例
- Ruby Process.exec用法及代码示例
- Ruby Process.clock_getres用法及代码示例
- Ruby Process.times用法及代码示例
- Ruby Process.euid用法及代码示例
- Ruby Process.exit用法及代码示例
- Ruby Process.setpriority用法及代码示例
- Ruby Process.kill用法及代码示例
- Ruby Process.initgroups用法及代码示例
- Ruby Process.spawn用法及代码示例
- Ruby Process.egid用法及代码示例
- Ruby Process.last_status用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Process.getsid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。