thread2-r0drv-os2.cpp revision fa70e1eb5ae7e299e9af4b1be88e12277f53986f
/* $Id$ */
/** @file
* IPRT - Threads (Part 2), Ring-0 Driver, Generic Stubs.
*/
/*
* Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "the-os2-kernel.h"
#include <iprt/thread.h>
#include <iprt/err.h>
#include "internal/thread.h"
int rtThreadNativeInit(void)
{
return VINF_SUCCESS;
}
RTDECL(RTTHREAD) RTThreadSelf(void)
{
return rtThreadGetByNative(RTThreadNativeSelf());
}
int rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
{
NOREF(pThread);
NOREF(enmType);
return VERR_NOT_IMPLEMENTED;
}
int rtThreadNativeAdopt(PRTTHREADINT pThread)
{
NOREF(pThread);
return VERR_NOT_IMPLEMENTED;
}
void rtThreadNativeDestroy(PRTTHREADINT pThread)
{
NOREF(pThread);
}
int rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)
{
NOREF(pNativeThread);
NOREF(pThreadInt);
return VERR_NOT_IMPLEMENTED;
}