mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:05:41 +00:00
- Fixed the declaration of some thread functions.
svn path=/trunk/; revision=7045
This commit is contained in:
parent
41b0a75f9a
commit
4e7d177b17
3 changed files with 9 additions and 7 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: ps.h,v 1.54 2003/11/27 01:06:48 gdalsnes Exp $
|
||||
/* $Id: ps.h,v 1.55 2003/12/14 18:02:34 hbirr Exp $
|
||||
*
|
||||
* FILE: ntoskrnl/ke/kthread.c
|
||||
* PURPOSE: Process manager definitions
|
||||
|
@ -508,7 +508,7 @@ VOID
|
|||
PsApplicationProcessorInit(VOID);
|
||||
VOID
|
||||
PsPrepareForApplicationProcessorInit(ULONG Id);
|
||||
NTSTATUS STDCALL
|
||||
VOID STDCALL
|
||||
PsIdleThreadMain(PVOID Context);
|
||||
|
||||
VOID STDCALL
|
||||
|
|
|
@ -25,7 +25,7 @@ PETHREAD PiIdleThread;
|
|||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
NTSTATUS STDCALL
|
||||
VOID STDCALL
|
||||
PsIdleThreadMain(PVOID Context)
|
||||
{
|
||||
KIRQL oldlvl;
|
||||
|
@ -54,7 +54,7 @@ PsInitIdleThread(VOID)
|
|||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
(PKSTART_ROUTINE) PsIdleThreadMain,
|
||||
PsIdleThreadMain,
|
||||
NULL);
|
||||
|
||||
Priority = LOW_PRIORITY;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: thread.c,v 1.122 2003/11/17 02:12:51 hyperion Exp $
|
||||
/* $Id: thread.c,v 1.123 2003/12/14 18:02:33 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -199,7 +199,7 @@ PiWakeupReaperThread(VOID)
|
|||
KeSetEvent(&PiReaperThreadEvent, 0, FALSE);
|
||||
}
|
||||
|
||||
NTSTATUS STDCALL
|
||||
VOID STDCALL
|
||||
PiReaperThreadMain(PVOID Ignored)
|
||||
{
|
||||
while (1)
|
||||
|
@ -506,7 +506,7 @@ PsInitThreadManagment(VOID)
|
|||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
(PKSTART_ROUTINE) PiReaperThreadMain,
|
||||
PiReaperThreadMain,
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
@ -624,6 +624,8 @@ NtAlertResumeThread(IN HANDLE ThreadHandle,
|
|||
OUT PULONG SuspendCount)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue