mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
a6d6844e8a
Is anybody doing any work on the OS/2 support? svn path=/trunk/; revision=3946
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
/* $Id: process.cpp,v 1.6 2003/01/07 16:23:11 robd Exp $
|
|
*/
|
|
/*
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS OS/2 sub system
|
|
* PART: doscalls.dll
|
|
* FILE: process.cpp
|
|
* CONTAINS: process and thread related CP-functions.
|
|
* PURPOSE: Kernelservices for OS/2 apps
|
|
* PROGRAMMER: Robert K. nonvolatil@yahoo.de
|
|
* REVISION HISTORY:
|
|
* 13-03-2002 Created
|
|
* 25-07-2002 Work to make it compile
|
|
*/
|
|
|
|
|
|
//#if defined (INCL_DOS)
|
|
#define INCL_DOSPROCESS
|
|
#define INCL_DOSERRORS
|
|
#include "ros2.h"
|
|
|
|
|
|
APIRET STDCALL DosSleep(ULONG msec)
|
|
{
|
|
NT::NTSTATUS stat;
|
|
NT::TIME Interv;
|
|
Interv.QuadPart= -(10000 * msec);
|
|
stat = NT::NtDelayExecution( TRUE, &Interv );
|
|
return 0;
|
|
}
|
|
|
|
|
|
/* $Id: process.cpp,v 1.6 2003/01/07 16:23:11 robd Exp $ */
|
|
/* Terminates the current thread or the current Process.
|
|
Decission is made by action
|
|
FIXME: move this code to OS2.EXE */
|
|
VOID APIENTRY DosExit(ULONG action, ULONG result)
|
|
{
|
|
// decide what to do
|
|
if( action == EXIT_THREAD)
|
|
{
|
|
NT::NtTerminateThread( NULL, result );
|
|
}
|
|
else // EXIT_PROCESS
|
|
{
|
|
NT::NtTerminateProcess( NULL, result );
|
|
}
|
|
}
|
|
|
|
|
|
APIRET STDCALL DosCreateThread(PTID ptid, PFNTHREAD pfn,
|
|
ULONG param, ULONG flag, ULONG cbStack)
|
|
{
|
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/* EOF */
|