id.cpp
上传用户:cqgdffbw
上传日期:2021-04-27
资源大小:17k
文件大小:1k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #include <unistd.h>
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout << "The pid is " << getpid() << endl;
  7.   cout << "the session id is " << getsid(getpid()) << endl;
  8.   cout << "the uid is " << getuid() << endl;
  9.   cout << "get euid is " << geteuid() << endl;
  10.   cout << "the gid is " << getgid() << endl;
  11.   cout << "get egid is " << getegid() << endl;
  12.   cout << "get process's group id " << getpgid(getpid()) << endl;
  13.   int pid = fork();
  14.   if (pid == 0) {
  15.     cout << "child process's gid is " << getpid() << endl;
  16.     cout << "child process's group id is  "<< getpgid(getpid()) << endl;
  17.   }
  18. }