_getpid
更新 : 2007 年 11 月
プロセス ID を取得します。
int _getpid( void );
戻り値
システムから取得したプロセス ID を返します。エラーの戻り値はありません。
解説
_getpid 関数は、システムからプロセス ID を取得します。プロセス ID とは、呼び出しプロセスを一意に識別する ID です。
必要条件
ルーチン |
必須ヘッダー |
---|---|
_getpid |
<process.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// 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() );
}
Process id: 3584
.NET Framework の相当するアイテム
System::Diagnostics::Process::Id