getpid()函数

getpid
  getpid(取得进程识别码)
  相关函数: fork,kill,getpid
  表头文件: #include

#include<unistd.h>
  main()
  {
      printf(“pid=%d\n”,getpid());
  }

  执行:
  pid=1494

你可能感兴趣的:(函数)