位置:首页 > 其他技术 > Unix/Linux系统调用 > getsid()函数 Unix/Linux

getsid()函数 Unix/Linux

getsid - 获取会话ID

内容简介

#include <unistd.h>

pid_t getsid(pid_t pid);

描述

getsid(0) 返回调用进程的会话IDgetsid(p) 返回与进程ID的进程的会话ID p. (一个进程的会话ID是会话组长的进程组ID.) On error, (pid_t) -1 will be returned, and errno is set appropriately.

错误

标签 描述
EPERM A process with process ID p exists, but it is not in the same session as the current process, and the implementation considers this an error.
ESRCH No process with process ID p was found.

遵循于

SVr4, POSIX.1-2001.

注意

Linux does not return EPERM.

Linux has this system call since Linux 1.3.44. There is libc support since libc 5.2.19.

To get the prototype under glibc, define both _XOPEN_SOURCE and _XOPEN_SOURCE_EXTENDED, or use "#define _XOPEN_SOURCE n" for some integer nlarger than or equal to 500.

另请参阅