/*
* 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
|
15903 |
Matt Attaway |
Everything should be happy now between the Workshop and the depot paths |
|
|
//guest/perforce_software/p4/2015_1/sys/pid.cc |
#1
|
15901 |
Matt Attaway |
Clean up code to fit modern Workshop naming standards |
|
|
//guest/perforce_software/p4/2015.1/sys/pid.cc |
#1
|
12190 |
Matt Attaway |
Initial drop of 2015.1 p4/p4api source |
|
|