mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 06:33:08 +00:00
2ca9fcd3b0
svn path=/trunk/; revision=65460
33 lines
604 B
C
33 lines
604 B
C
/* $Id: yield.c,v 1.4 2002/10/29 04:45:39 rex Exp $
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS POSIX+ Subsystem
|
|
* FILE: subsys/psx/lib/psxdll/sched/yield.c
|
|
* PURPOSE: Yield processor
|
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
|
* UPDATE HISTORY:
|
|
* 15/02/2002: Created
|
|
*/
|
|
|
|
#include <ddk/ntddk.h>
|
|
#include <sched.h>
|
|
#include <psx/errno.h>
|
|
|
|
int sched_yield(void)
|
|
{
|
|
NTSTATUS nErrCode;
|
|
|
|
nErrCode = NtYieldExecution();
|
|
|
|
if(!NT_SUCCESS(nErrCode))
|
|
{
|
|
errno = __status_to_errno(nErrCode);
|
|
return (-1);
|
|
}
|
|
|
|
return (0);
|
|
}
|
|
|
|
/* EOF */
|
|
|