mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
ad8ae0a2f5
svn path=/trunk/; revision=2634
23 lines
460 B
C
23 lines
460 B
C
/* $Id:
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: subsys/psx/lib/psxdll/unistd/getpid.c
|
|
* PURPOSE: Get the process ID
|
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
|
* UPDATE HISTORY:
|
|
* 15/02/2002: Created
|
|
*/
|
|
|
|
#include <ddk/ntddk.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
pid_t getpid(void)
|
|
{
|
|
return ((pid_t)NtCurrentTeb()->Cid.UniqueThread);
|
|
}
|
|
|
|
/* EOF */
|
|
|