getpid() - Unix、Linux 系统调用
Tutorials Point


  Unix 入门
  Unix Shell 编程
  高级 Unix
  Unix 有用参考
  Unix 有用资源
  精读

版权所有 © 2014 tutorialspoint



  主页     引用     讨论论坛     关于 TP  

getpid() - Unix、Linux 系统调用


previous next AddThis Social Bookmark Button

广告

名称

getpid、getppid - 获取进程标识

概要

#include <sys/types.h>
#include <unistd.h>

pid_t getpid(void);
pid_t getppid(void);

说明

getpid() 返回当前进程的进程 ID。(这通常由生成唯一临时文件名的例程使用。)

getppid() 返回当前进程父进程的进程 ID。

遵循

POSIX.1-2001、4.3BSD、SVr4

请参见



previous next Printer Friendly

广告


  

广告