mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
24 lines
524 B
C
24 lines
524 B
C
|
/* $Id: self.c,v 1.4 2002/10/29 04:45:38 rex Exp $
|
||
|
*/
|
||
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS POSIX+ Subsystem
|
||
|
* FILE: subsys/psx/lib/psxdll/pthread/self.c
|
||
|
* PURPOSE: get calling thread's ID
|
||
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
||
|
* UPDATE HISTORY:
|
||
|
* 27/12/2001: Created
|
||
|
*/
|
||
|
|
||
|
#include <ddk/ntddk.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <pthread.h>
|
||
|
|
||
|
pthread_t pthread_self(void)
|
||
|
{
|
||
|
return ((pthread_t)(NtCurrentTeb()->Cid).UniqueThread);
|
||
|
}
|
||
|
|
||
|
/* EOF */
|
||
|
|