/*
* Copyright 1995, 1996 Perforce Software. All rights reserved.
*
* This file is part of Perforce - the FAST SCM System.
*/
# define NEED_GETPID
# define NEED_SIGNAL
# include "stdhdrs.h"
# include "pid.h"
# ifdef OS_NT
int
Pid::GetID()
{
return GetCurrentThreadId();
}
int
Pid::GetProcID()
{
return GetCurrentProcessId();
}
int
Pid::CheckID( int id )
{
DWORD threadId = id;
HANDLE threadHandle;
threadHandle = OpenThread( THREAD_QUERY_INFORMATION, NULL, threadId );
if( !threadHandle )
return 0;
CloseHandle( threadHandle );
return 1;
}
# else
int
Pid::GetID()
{
return getpid();
}
int
Pid::GetProcID()
{
return GetID();
}
int
Pid::CheckID( int id )
{
return( kill( id, 0 ) == 0 );
}
# endif
# |
Change |
User |
Description |
Committed |
|
#1
|
21443 |
dannyz_snps |
"Forking branch 2016-1 of perforce_software-p4 to dannyz_snps-p4." |
|
|
//guest/perforce_software/p4/2016-1/sys/pid.cc |
#1
|
19472 |
Liz Lam |
Initial add of the 2016.1 p4/p4api source code. |
|
|