_getpid
取得處理序鑑定。
重要
這個應用程式開發介面不能用於 Windows 執行階段執行的應用程式。如需詳細資訊,請參閱 /ZW 不支援 CRT 函式。
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