VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/nt/thread2-r0drv-nt.cpp@ 7331

Last change on this file since 7331 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.7 KB
Line 
1/* $Id: thread2-r0drv-nt.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Threads (Part 2), Ring-0 Driver, NT.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#include "the-nt-kernel.h"
31
32#include <iprt/thread.h>
33#include <iprt/assert.h>
34#include <iprt/err.h>
35
36#include "internal/thread.h"
37
38
39int rtThreadNativeInit(void)
40{
41 /* No TLS in Ring-0. :-/ */
42 return VINF_SUCCESS;
43}
44
45
46RTDECL(RTTHREAD) RTThreadSelf(void)
47{
48 return rtThreadGetByNative((RTNATIVETHREAD)PsGetCurrentThread());
49}
50
51
52int rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
53{
54 /*
55 * Convert the IPRT priority type to NT priority.
56 *
57 * The NT priority is in the range 0..32, with realtime starting
58 * at 16 and the default for user processes at 8. (Should try find
59 * the appropriate #defines for some of this...)
60 */
61 KPRIORITY Priority;
62 switch (enmType)
63 {
64 case RTTHREADTYPE_INFREQUENT_POLLER: Priority = 6; break;
65 case RTTHREADTYPE_EMULATION: Priority = 7; break;
66 case RTTHREADTYPE_DEFAULT: Priority = 8; break;
67 case RTTHREADTYPE_MSG_PUMP: Priority = 9; break;
68 case RTTHREADTYPE_IO: Priority = LOW_REALTIME_PRIORITY; break;
69 case RTTHREADTYPE_TIMER: Priority = MAXIMUM_PRIORITY; break;
70
71 default:
72 AssertMsgFailed(("enmType=%d\n", enmType));
73 return VERR_INVALID_PARAMETER;
74 }
75
76 /*
77 * Do the actual modification.
78 */
79 NTSTATUS rc = KeSetPriorityThread((PKTHREAD)pThread->Core.Key, Priority);
80 AssertMsg(NT_SUCCESS(rc), ("%#x\n", rc));
81 return RTErrConvertFromNtStatus(rc);
82}
83
84
85int rtThreadNativeAdopt(PRTTHREADINT pThread)
86{
87 return VERR_NOT_IMPLEMENTED;
88}
89
90
91/**
92 * Native kernel thread wrapper function.
93 *
94 * This will forward to rtThreadMain and do termination upon return.
95 *
96 * @param pvArg Pointer to the argument package.
97 */
98static VOID __stdcall rtThreadNativeMain(PVOID pvArg)
99{
100 PETHREAD Self = PsGetCurrentThread();
101 PRTTHREADINT pThread = (PRTTHREADINT)pvArg;
102
103 rtThreadMain(pThread, (RTNATIVETHREAD)Self, &pThread->szName[0]);
104
105 ObDereferenceObject(Self); /* the rtThreadNativeCreate ref. */
106}
107
108
109int rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)
110{
111 /*
112 * PsCreateSysemThread create a thread an give us a handle in return.
113 * We requests the object for that handle and then close it, so what
114 * we keep around is the pointer to the thread object and not a handle.
115 * The thread will dereference the object before returning.
116 */
117 HANDLE hThread = NULL;
118 OBJECT_ATTRIBUTES ObjAttr;
119 InitializeObjectAttributes(&ObjAttr, NULL, OBJ_KERNEL_HANDLE, NULL, NULL);
120 NTSTATUS rc = PsCreateSystemThread(&hThread,
121 THREAD_ALL_ACCESS,
122 &ObjAttr,
123 NULL /* ProcessHandle - kernel */,
124 NULL /* ClientID - kernel */,
125 rtThreadNativeMain,
126 pThreadInt);
127 if (NT_SUCCESS(rc))
128 {
129 PVOID pvThreadObj;
130 rc = ObReferenceObjectByHandle(hThread, THREAD_ALL_ACCESS, NULL /* object type */,
131 KernelMode, &pvThreadObj, NULL /* handle info */);
132 if (NT_SUCCESS(rc))
133 {
134 ZwClose(hThread);
135 *pNativeThread = (RTNATIVETHREAD)pvThreadObj;
136 }
137 else
138 AssertMsgFailed(("%#x\n", rc));
139 }
140 return RTErrConvertFromNtStatus(rc);
141}
142
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette