mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00
Made PsGetCurrentThread STDCALL
svn path=/trunk/; revision=1342
This commit is contained in:
parent
11c7a09174
commit
e7365f8b00
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: thread.c,v 1.53 2000/07/30 18:22:35 dwelch Exp $
|
/* $Id: thread.c,v 1.54 2000/09/06 03:08:22 phreak Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -111,7 +111,7 @@ PKTHREAD STDCALL KeGetCurrentThread(VOID)
|
||||||
return(&(CurrentThread->Tcb));
|
return(&(CurrentThread->Tcb));
|
||||||
}
|
}
|
||||||
|
|
||||||
PETHREAD PsGetCurrentThread(VOID)
|
PETHREAD STDCALL PsGetCurrentThread(VOID)
|
||||||
{
|
{
|
||||||
return(CurrentThread);
|
return(CurrentThread);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue