mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 06:33:08 +00:00
2ca9fcd3b0
svn path=/trunk/; revision=65460
23 lines
524 B
C
23 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 */
|
|
|