1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, Threads.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * If you received this file as part of a commercial VirtualBox
|
---|
17 | * distribution, then only the terms of your commercial VirtualBox
|
---|
18 | * license agreement apply instead of the previous paragraph.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef ___VBox_pdm_h
|
---|
22 | # include <VBox/pdm.h>
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | #ifndef ___VBox_pdmthread_h
|
---|
26 | #define ___VBox_pdmthread_h
|
---|
27 |
|
---|
28 | __BEGIN_DECLS
|
---|
29 |
|
---|
30 | /** @group grp_pdm_thread Threads
|
---|
31 | * @ingroup grp_pdm
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * The thread state
|
---|
37 | */
|
---|
38 | typedef enum PDMTHREADSTATE
|
---|
39 | {
|
---|
40 | /** The usual invalid 0 entry. */
|
---|
41 | PDMTHREADSTATE_INVALID = 0,
|
---|
42 | /** The thread is initializing.
|
---|
43 | * Prev state: none
|
---|
44 | * Next state: suspended, terminating (error) */
|
---|
45 | PDMTHREADSTATE_INITIALIZING,
|
---|
46 | /** The thread has been asked to suspend.
|
---|
47 | * Prev state: running
|
---|
48 | * Next state: suspended */
|
---|
49 | PDMTHREADSTATE_SUSPENDING,
|
---|
50 | /** The thread is supended.
|
---|
51 | * Prev state: suspending, initializing
|
---|
52 | * Next state: resuming, terminated. */
|
---|
53 | PDMTHREADSTATE_SUSPENDED,
|
---|
54 | /** The thread is active.
|
---|
55 | * Prev state: suspended
|
---|
56 | * Next state: running, terminating. */
|
---|
57 | PDMTHREADSTATE_RESUMING,
|
---|
58 | /** The thread is active.
|
---|
59 | * Prev state: resuming
|
---|
60 | * Next state: suspending, terminating. */
|
---|
61 | PDMTHREADSTATE_RUNNING,
|
---|
62 | /** The thread has been asked to terminate.
|
---|
63 | * Prev state: initializing, suspended, resuming, running
|
---|
64 | * Next state: terminated. */
|
---|
65 | PDMTHREADSTATE_TERMINATING,
|
---|
66 | /** The thread is terminating / has terminated.
|
---|
67 | * Prev state: terminating
|
---|
68 | * Next state: none */
|
---|
69 | PDMTHREADSTATE_TERMINATED,
|
---|
70 | /** The usual 32-bit hack. */
|
---|
71 | PDMTHREADSTATE_32BIT_HACK = 0x7fffffff
|
---|
72 | } PDMTHREADSTATE;
|
---|
73 |
|
---|
74 | /** A pointer to a PDM thread. */
|
---|
75 | typedef R3PTRTYPE(struct PDMTHREAD *) PPDMTHREAD;
|
---|
76 | /** A pointer to a pointer to a PDM thread. */
|
---|
77 | typedef PPDMTHREAD *PPPDMTHREAD;
|
---|
78 |
|
---|
79 | /**
|
---|
80 | * PDM thread, device variation.
|
---|
81 | *
|
---|
82 | * @returns VBox status code.
|
---|
83 | * @param pDevIns The device instance.
|
---|
84 | * @param pThread The PDM thread data.
|
---|
85 | */
|
---|
86 | typedef int FNPDMTHREADDEV(PPDMDEVINS pDevIns, PPDMTHREAD pThread);
|
---|
87 | /** Pointer to a FNPDMTHREADDEV(). */
|
---|
88 | typedef FNPDMTHREADDEV *PFNPDMTHREADDEV;
|
---|
89 |
|
---|
90 | /**
|
---|
91 | * PDM thread, driver variation.
|
---|
92 | *
|
---|
93 | * @returns VBox status code.
|
---|
94 | * @param pDrvIns The driver instance.
|
---|
95 | * @param pThread The PDM thread data.
|
---|
96 | */
|
---|
97 | typedef int FNPDMTHREADDRV(PPDMDRVINS pDrvIns, PPDMTHREAD pThread);
|
---|
98 | /** Pointer to a FNPDMTHREADDRV(). */
|
---|
99 | typedef FNPDMTHREADDRV *PFNPDMTHREADDRV;
|
---|
100 |
|
---|
101 | /**
|
---|
102 | * PDM thread, driver variation.
|
---|
103 | *
|
---|
104 | * @returns VBox status code.
|
---|
105 | * @param pVM The VM handle.
|
---|
106 | * @param pThread The PDM thread data.
|
---|
107 | */
|
---|
108 | typedef int FNPDMTHREADINT(PVM pVM, PPDMTHREAD pThread);
|
---|
109 | /** Pointer to a FNPDMTHREADINT(). */
|
---|
110 | typedef FNPDMTHREADINT *PFNPDMTHREADINT;
|
---|
111 |
|
---|
112 | /**
|
---|
113 | * PDM thread, driver variation.
|
---|
114 | *
|
---|
115 | * @returns VBox status code.
|
---|
116 | * @param pThread The PDM thread data.
|
---|
117 | */
|
---|
118 | typedef int FNPDMTHREADEXT(PPDMTHREAD pThread);
|
---|
119 | /** Pointer to a FNPDMTHREADEXT(). */
|
---|
120 | typedef FNPDMTHREADEXT *PFNPDMTHREADEXT;
|
---|
121 |
|
---|
122 |
|
---|
123 |
|
---|
124 | /**
|
---|
125 | * PDM thread wakup call, device variation.
|
---|
126 | *
|
---|
127 | * @returns VBox status code.
|
---|
128 | * @param pDevIns The device instance.
|
---|
129 | * @param pThread The PDM thread data.
|
---|
130 | */
|
---|
131 | typedef int FNPDMTHREADWAKEUPDEV(PPDMDEVINS pDevIns, PPDMTHREAD pThread);
|
---|
132 | /** Pointer to a FNPDMTHREADDEV(). */
|
---|
133 | typedef FNPDMTHREADWAKEUPDEV *PFNPDMTHREADWAKEUPDEV;
|
---|
134 |
|
---|
135 | /**
|
---|
136 | * PDM thread wakup call, driver variation.
|
---|
137 | *
|
---|
138 | * @returns VBox status code.
|
---|
139 | * @param pDrvIns The driver instance.
|
---|
140 | * @param pThread The PDM thread data.
|
---|
141 | */
|
---|
142 | typedef int FNPDMTHREADWAKEUPDRV(PPDMDRVINS pDrvIns, PPDMTHREAD pThread);
|
---|
143 | /** Pointer to a FNPDMTHREADDRV(). */
|
---|
144 | typedef FNPDMTHREADWAKEUPDRV *PFNPDMTHREADWAKEUPDRV;
|
---|
145 |
|
---|
146 | /**
|
---|
147 | * PDM thread wakup call, internal variation.
|
---|
148 | *
|
---|
149 | * @returns VBox status code.
|
---|
150 | * @param pVM The VM handle.
|
---|
151 | * @param pThread The PDM thread data.
|
---|
152 | */
|
---|
153 | typedef int FNPDMTHREADWAKEUPINT(PVM pVM, PPDMTHREAD pThread);
|
---|
154 | /** Pointer to a FNPDMTHREADWAKEUPINT(). */
|
---|
155 | typedef FNPDMTHREADWAKEUPINT *PFNPDMTHREADWAKEUPINT;
|
---|
156 |
|
---|
157 | /**
|
---|
158 | * PDM thread wakup call, external variation.
|
---|
159 | *
|
---|
160 | * @returns VBox status code.
|
---|
161 | * @param pThread The PDM thread data.
|
---|
162 | */
|
---|
163 | typedef int FNPDMTHREADWAKEUPEXT(PPDMTHREAD pThread);
|
---|
164 | /** Pointer to a FNPDMTHREADEXT(). */
|
---|
165 | typedef FNPDMTHREADWAKEUPEXT *PFNPDMTHREADWAKEUPEXT;
|
---|
166 |
|
---|
167 |
|
---|
168 | /**
|
---|
169 | * PDM Thread instance data.
|
---|
170 | */
|
---|
171 | typedef struct PDMTHREAD
|
---|
172 | {
|
---|
173 | /** PDMTHREAD_VERSION. */
|
---|
174 | uint32_t u32Version;
|
---|
175 | /** The thread state. */
|
---|
176 | PDMTHREADSTATE volatile enmState;
|
---|
177 | /** The thread handle. */
|
---|
178 | RTTHREAD Thread;
|
---|
179 | /** The user parameter. */
|
---|
180 | R3PTRTYPE(void *) pvUser;
|
---|
181 | /** Data specific to the kind of thread.
|
---|
182 | * This should really be in PDMTHREADINT, but is placed here because of the
|
---|
183 | * function pointer typedefs. So, don't touch these, please.
|
---|
184 | */
|
---|
185 | union
|
---|
186 | {
|
---|
187 | /** PDMTHREADTYPE_DEVICE data. */
|
---|
188 | struct
|
---|
189 | {
|
---|
190 | /** The device instance. */
|
---|
191 | PPDMDEVINSR3 pDevIns;
|
---|
192 | /** The thread function. */
|
---|
193 | R3PTRTYPE(PFNPDMTHREADDEV) pfnThread;
|
---|
194 | /** Thread. */
|
---|
195 | R3PTRTYPE(PFNPDMTHREADWAKEUPDEV) pfnWakeup;
|
---|
196 | } Dev;
|
---|
197 |
|
---|
198 | /** PDMTHREADTYPE_DRIVER data. */
|
---|
199 | struct
|
---|
200 | {
|
---|
201 | /** The driver instance. */
|
---|
202 | R3PTRTYPE(PPDMDRVINS) pDrvIns;
|
---|
203 | /** The thread function. */
|
---|
204 | R3PTRTYPE(PFNPDMTHREADDRV) pfnThread;
|
---|
205 | /** Thread. */
|
---|
206 | R3PTRTYPE(PFNPDMTHREADWAKEUPDRV) pfnWakeup;
|
---|
207 | } Drv;
|
---|
208 |
|
---|
209 | /** PDMTHREADTYPE_INTERNAL data. */
|
---|
210 | struct
|
---|
211 | {
|
---|
212 | /** The thread function. */
|
---|
213 | R3PTRTYPE(PFNPDMTHREADINT) pfnThread;
|
---|
214 | /** Thread. */
|
---|
215 | R3PTRTYPE(PFNPDMTHREADWAKEUPINT) pfnWakeup;
|
---|
216 | } Int;
|
---|
217 |
|
---|
218 | /** PDMTHREADTYPE_EXTERNAL data. */
|
---|
219 | struct
|
---|
220 | {
|
---|
221 | /** The thread function. */
|
---|
222 | R3PTRTYPE(PFNPDMTHREADEXT) pfnThread;
|
---|
223 | /** Thread. */
|
---|
224 | R3PTRTYPE(PFNPDMTHREADWAKEUPEXT) pfnWakeup;
|
---|
225 | } Ext;
|
---|
226 | } u;
|
---|
227 |
|
---|
228 | /** Internal data. */
|
---|
229 | union
|
---|
230 | {
|
---|
231 | #ifdef PDMTHREADINT_DECLARED
|
---|
232 | PDMTHREADINT s;
|
---|
233 | #endif
|
---|
234 | uint8_t padding[64];
|
---|
235 | } Internal;
|
---|
236 | } PDMTHREAD;
|
---|
237 |
|
---|
238 | /** PDMTHREAD::u32Version value. */
|
---|
239 | #define PDMTHREAD_VERSION 0xef010000
|
---|
240 |
|
---|
241 |
|
---|
242 | /** @} */
|
---|
243 |
|
---|
244 | __END_DECLS
|
---|
245 |
|
---|
246 | #endif
|
---|