2021-12-30 00:14:23 +00:00
|
|
|
/*
|
2022-06-02 18:51:06 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2021-12-30 00:14:23 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
2022-10-26 19:18:14 +00:00
|
|
|
|
2021-12-30 00:14:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
pid_t pid = getpid();
|
|
|
|
printf(" my pid = %d\n", pid);
|
|
|
|
printf(" my ppid = %d\n", getppid());
|
|
|
|
printf(" my uid = %d\n", getuid());
|
|
|
|
printf(" my gid = %d\n", getgid());
|
|
|
|
printf(" my sid = %d\n", getsid(pid));
|
|
|
|
|
|
|
|
exit(0); // Since glibc 2.3 this calls SYS_exit_group
|
|
|
|
}
|