_getpid
获取进程标识符。
重要
此 API 不能用于在 Windows 运行时中执行的应用程序。有关详细信息,请参见 CRT functions not supported with /ZW(CRT 函数不支持使用/ZW)。
int _getpid( void );
返回值
返回从系统获得的进程 ID。 无错误返回。
备注
_getpid 函数获取来自系统的进程 ID。 进程 ID 唯一标识调用过程。
要求
例程 |
必需的标头 |
---|---|
_getpid |
<process.h> |
有关兼容性的更多信息,请参见兼容性。
示例
// crt_getpid.c
// This program uses _getpid to obtain
// the process ID and then prints the ID.
#include <stdio.h>
#include <process.h>
int main( void )
{
// If run from command line, shows different ID for
// command line than for operating system shell.
printf( "Process id: %d\n", _getpid() );
}
.NET Framework 等效项
System::Diagnostics::Process::Id