1 | /** @file
|
---|
2 | * IPRT - Threads.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2013 Oracle Corporation
|
---|
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 (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___iprt_thread_h
|
---|
27 | #define ___iprt_thread_h
|
---|
28 |
|
---|
29 | #include <iprt/cdefs.h>
|
---|
30 | #include <iprt/types.h>
|
---|
31 | #include <iprt/stdarg.h>
|
---|
32 |
|
---|
33 |
|
---|
34 | RT_C_DECLS_BEGIN
|
---|
35 |
|
---|
36 | /** @defgroup grp_rt_thread RTThread - Thread Management
|
---|
37 | * @ingroup grp_rt
|
---|
38 | * @{
|
---|
39 | */
|
---|
40 |
|
---|
41 | /**
|
---|
42 | * The thread state.
|
---|
43 | */
|
---|
44 | typedef enum RTTHREADSTATE
|
---|
45 | {
|
---|
46 | /** The usual invalid 0 value. */
|
---|
47 | RTTHREADSTATE_INVALID = 0,
|
---|
48 | /** The thread is being initialized. */
|
---|
49 | RTTHREADSTATE_INITIALIZING,
|
---|
50 | /** The thread has terminated */
|
---|
51 | RTTHREADSTATE_TERMINATED,
|
---|
52 | /** Probably running. */
|
---|
53 | RTTHREADSTATE_RUNNING,
|
---|
54 |
|
---|
55 | /** Waiting on a critical section. */
|
---|
56 | RTTHREADSTATE_CRITSECT,
|
---|
57 | /** Waiting on a event semaphore. */
|
---|
58 | RTTHREADSTATE_EVENT,
|
---|
59 | /** Waiting on a event multiple wakeup semaphore. */
|
---|
60 | RTTHREADSTATE_EVENT_MULTI,
|
---|
61 | /** Waiting on a fast mutex. */
|
---|
62 | RTTHREADSTATE_FAST_MUTEX,
|
---|
63 | /** Waiting on a mutex. */
|
---|
64 | RTTHREADSTATE_MUTEX,
|
---|
65 | /** Waiting on a read write semaphore, read (shared) access. */
|
---|
66 | RTTHREADSTATE_RW_READ,
|
---|
67 | /** Waiting on a read write semaphore, write (exclusive) access. */
|
---|
68 | RTTHREADSTATE_RW_WRITE,
|
---|
69 | /** The thread is sleeping. */
|
---|
70 | RTTHREADSTATE_SLEEP,
|
---|
71 | /** Waiting on a spin mutex. */
|
---|
72 | RTTHREADSTATE_SPIN_MUTEX,
|
---|
73 | /** End of the thread states. */
|
---|
74 | RTTHREADSTATE_END,
|
---|
75 |
|
---|
76 | /** The usual 32-bit size hack. */
|
---|
77 | RTTHREADSTATE_32BIT_HACK = 0x7fffffff
|
---|
78 | } RTTHREADSTATE;
|
---|
79 |
|
---|
80 | /** Checks if a thread state indicates that the thread is sleeping. */
|
---|
81 | #define RTTHREAD_IS_SLEEPING(enmState) ((enmState) >= RTTHREADSTATE_CRITSECT)
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * Thread types.
|
---|
85 | * Besides identifying the purpose of the thread, the thread type is
|
---|
86 | * used to select the scheduling properties.
|
---|
87 | *
|
---|
88 | * The types in are placed in a rough order of ascending priority.
|
---|
89 | */
|
---|
90 | typedef enum RTTHREADTYPE
|
---|
91 | {
|
---|
92 | /** Invalid type. */
|
---|
93 | RTTHREADTYPE_INVALID = 0,
|
---|
94 | /** Infrequent poller thread.
|
---|
95 | * This type of thread will sleep for the most of the time, and do
|
---|
96 | * infrequent polls on resources at 0.5 sec or higher intervals.
|
---|
97 | */
|
---|
98 | RTTHREADTYPE_INFREQUENT_POLLER,
|
---|
99 | /** Main heavy worker thread.
|
---|
100 | * Thread of this type is driving asynchronous tasks in the Main
|
---|
101 | * API which takes a long time and might involve a bit of CPU. Like
|
---|
102 | * for instance creating a fixed sized VDI.
|
---|
103 | */
|
---|
104 | RTTHREADTYPE_MAIN_HEAVY_WORKER,
|
---|
105 | /** The emulation thread type.
|
---|
106 | * While being a thread with very high workload it still is vital
|
---|
107 | * that it gets scheduled frequently. When possible all other thread
|
---|
108 | * types except DEFAULT and GUI should interrupt this one ASAP when
|
---|
109 | * they become ready.
|
---|
110 | */
|
---|
111 | RTTHREADTYPE_EMULATION,
|
---|
112 | /** The default thread type.
|
---|
113 | * Since it doesn't say much about the purpose of the thread
|
---|
114 | * nothing special is normally done to the scheduling. This type
|
---|
115 | * should be avoided.
|
---|
116 | * The main thread is registered with default type during RTR3Init()
|
---|
117 | * and that's what the default process priority is derived from.
|
---|
118 | */
|
---|
119 | RTTHREADTYPE_DEFAULT,
|
---|
120 | /** The GUI thread type
|
---|
121 | * The GUI normally have a low workload but is frequently scheduled
|
---|
122 | * to handle events. When possible the scheduler should not leave
|
---|
123 | * threads of this kind waiting for too long (~50ms).
|
---|
124 | */
|
---|
125 | RTTHREADTYPE_GUI,
|
---|
126 | /** Main worker thread.
|
---|
127 | * Thread of this type is driving asynchronous tasks in the Main API.
|
---|
128 | * In most cases this means little work an a lot of waiting.
|
---|
129 | */
|
---|
130 | RTTHREADTYPE_MAIN_WORKER,
|
---|
131 | /** VRDP I/O thread.
|
---|
132 | * These threads are I/O threads in the RDP server will hang around
|
---|
133 | * waiting for data, process it and pass it on.
|
---|
134 | */
|
---|
135 | RTTHREADTYPE_VRDP_IO,
|
---|
136 | /** The debugger type.
|
---|
137 | * Threads involved in servicing the debugger. It must remain
|
---|
138 | * responsive even when things are running wild in.
|
---|
139 | */
|
---|
140 | RTTHREADTYPE_DEBUGGER,
|
---|
141 | /** Message pump thread.
|
---|
142 | * Thread pumping messages from one thread/process to another
|
---|
143 | * thread/process. The workload is very small, most of the time
|
---|
144 | * it's blocked waiting for messages to be procduced or processed.
|
---|
145 | * This type of thread will be favored after I/O threads.
|
---|
146 | */
|
---|
147 | RTTHREADTYPE_MSG_PUMP,
|
---|
148 | /** The I/O thread type.
|
---|
149 | * Doing I/O means shuffling data, waiting for request to arrive and
|
---|
150 | * for them to complete. The thread should be favored when competing
|
---|
151 | * with any other threads except timer threads.
|
---|
152 | */
|
---|
153 | RTTHREADTYPE_IO,
|
---|
154 | /** The timer thread type.
|
---|
155 | * A timer thread is mostly waiting for the timer to tick
|
---|
156 | * and then perform a little bit of work. Accuracy is important here,
|
---|
157 | * so the thread should be favoured over all threads. If premention can
|
---|
158 | * be configured at thread level, it could be made very short.
|
---|
159 | */
|
---|
160 | RTTHREADTYPE_TIMER,
|
---|
161 | /** Only used for validation. */
|
---|
162 | RTTHREADTYPE_END
|
---|
163 | } RTTHREADTYPE;
|
---|
164 |
|
---|
165 |
|
---|
166 | #ifndef IN_RC
|
---|
167 |
|
---|
168 | /**
|
---|
169 | * Checks if the IPRT thread component has been initialized.
|
---|
170 | *
|
---|
171 | * This is used to avoid calling into RTThread before the runtime has been
|
---|
172 | * initialized.
|
---|
173 | *
|
---|
174 | * @returns @c true if it's initialized, @c false if not.
|
---|
175 | */
|
---|
176 | RTDECL(bool) RTThreadIsInitialized(void);
|
---|
177 |
|
---|
178 | /**
|
---|
179 | * Get the thread handle of the current thread.
|
---|
180 | *
|
---|
181 | * @returns Thread handle.
|
---|
182 | */
|
---|
183 | RTDECL(RTTHREAD) RTThreadSelf(void);
|
---|
184 |
|
---|
185 | /**
|
---|
186 | * Get the native thread handle of the current thread.
|
---|
187 | *
|
---|
188 | * @returns Native thread handle.
|
---|
189 | */
|
---|
190 | RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void);
|
---|
191 |
|
---|
192 | /**
|
---|
193 | * Millisecond granular sleep function.
|
---|
194 | *
|
---|
195 | * @returns VINF_SUCCESS on success.
|
---|
196 | * @returns VERR_INTERRUPTED if a signal or other asynchronous stuff happened
|
---|
197 | * which interrupt the peaceful sleep.
|
---|
198 | * @param cMillies Number of milliseconds to sleep.
|
---|
199 | * 0 milliseconds means yielding the timeslice - deprecated!
|
---|
200 | * @remark See RTThreadNanoSleep() for sleeping for smaller periods of time.
|
---|
201 | */
|
---|
202 | RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies);
|
---|
203 |
|
---|
204 | /**
|
---|
205 | * Millisecond granular sleep function, no logger calls.
|
---|
206 | *
|
---|
207 | * Same as RTThreadSleep, except it will never call into the IPRT logger. It
|
---|
208 | * can therefore safely be used in places where the logger is off limits, like
|
---|
209 | * at termination or init time. The electric fence heap is one consumer of
|
---|
210 | * this API.
|
---|
211 | *
|
---|
212 | * @returns VINF_SUCCESS on success.
|
---|
213 | * @returns VERR_INTERRUPTED if a signal or other asynchronous stuff happened
|
---|
214 | * which interrupt the peaceful sleep.
|
---|
215 | * @param cMillies Number of milliseconds to sleep.
|
---|
216 | * 0 milliseconds means yielding the timeslice - deprecated!
|
---|
217 | */
|
---|
218 | RTDECL(int) RTThreadSleepNoLog(RTMSINTERVAL cMillies);
|
---|
219 |
|
---|
220 | /**
|
---|
221 | * Yields the CPU.
|
---|
222 | *
|
---|
223 | * @returns true if we yielded.
|
---|
224 | * @returns false if it's probable that we didn't yield.
|
---|
225 | */
|
---|
226 | RTDECL(bool) RTThreadYield(void);
|
---|
227 |
|
---|
228 |
|
---|
229 |
|
---|
230 | /**
|
---|
231 | * Thread function.
|
---|
232 | *
|
---|
233 | * @returns 0 on success.
|
---|
234 | * @param ThreadSelf Thread handle to this thread.
|
---|
235 | * @param pvUser User argument.
|
---|
236 | */
|
---|
237 | typedef DECLCALLBACK(int) FNRTTHREAD(RTTHREAD ThreadSelf, void *pvUser);
|
---|
238 | /** Pointer to a FNRTTHREAD(). */
|
---|
239 | typedef FNRTTHREAD *PFNRTTHREAD;
|
---|
240 |
|
---|
241 | /**
|
---|
242 | * Thread creation flags.
|
---|
243 | */
|
---|
244 | typedef enum RTTHREADFLAGS
|
---|
245 | {
|
---|
246 | /** This flag is used to keep the thread structure around so it can
|
---|
247 | * be waited on after termination. @sa RTThreadWait and
|
---|
248 | * RTThreadWaitNoResume. Not required for RTThreadUserWait and friends!
|
---|
249 | */
|
---|
250 | RTTHREADFLAGS_WAITABLE = RT_BIT(0),
|
---|
251 | /** The bit number corresponding to the RTTHREADFLAGS_WAITABLE mask. */
|
---|
252 | RTTHREADFLAGS_WAITABLE_BIT = 0,
|
---|
253 |
|
---|
254 | /** Mask of valid flags, use for validation. */
|
---|
255 | RTTHREADFLAGS_MASK = RT_BIT(0)
|
---|
256 | } RTTHREADFLAGS;
|
---|
257 |
|
---|
258 |
|
---|
259 | /**
|
---|
260 | * Create a new thread.
|
---|
261 | *
|
---|
262 | * @returns iprt status code.
|
---|
263 | * @param pThread Where to store the thread handle to the new thread. (optional)
|
---|
264 | * @param pfnThread The thread function.
|
---|
265 | * @param pvUser User argument.
|
---|
266 | * @param cbStack The size of the stack for the new thread.
|
---|
267 | * Use 0 for the default stack size.
|
---|
268 | * @param enmType The thread type. Used for deciding scheduling attributes
|
---|
269 | * of the thread.
|
---|
270 | * @param fFlags Flags of the RTTHREADFLAGS type (ORed together).
|
---|
271 | * @param pszName Thread name.
|
---|
272 | *
|
---|
273 | * @remark When called in Ring-0, this API will create a new kernel thread and not a thread in
|
---|
274 | * the context of the calling process.
|
---|
275 | */
|
---|
276 | RTDECL(int) RTThreadCreate(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
|
---|
277 | RTTHREADTYPE enmType, unsigned fFlags, const char *pszName);
|
---|
278 |
|
---|
279 | /**
|
---|
280 | * Create a new thread.
|
---|
281 | *
|
---|
282 | * Same as RTThreadCreate except the name is given in the RTStrPrintfV form.
|
---|
283 | *
|
---|
284 | * @returns iprt status code.
|
---|
285 | * @param pThread See RTThreadCreate.
|
---|
286 | * @param pfnThread See RTThreadCreate.
|
---|
287 | * @param pvUser See RTThreadCreate.
|
---|
288 | * @param cbStack See RTThreadCreate.
|
---|
289 | * @param enmType See RTThreadCreate.
|
---|
290 | * @param fFlags See RTThreadCreate.
|
---|
291 | * @param pszName Thread name format.
|
---|
292 | * @param va Format arguments.
|
---|
293 | */
|
---|
294 | RTDECL(int) RTThreadCreateV(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
|
---|
295 | RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, va_list va);
|
---|
296 |
|
---|
297 | /**
|
---|
298 | * Create a new thread.
|
---|
299 | *
|
---|
300 | * Same as RTThreadCreate except the name is given in the RTStrPrintf form.
|
---|
301 | *
|
---|
302 | * @returns iprt status code.
|
---|
303 | * @param pThread See RTThreadCreate.
|
---|
304 | * @param pfnThread See RTThreadCreate.
|
---|
305 | * @param pvUser See RTThreadCreate.
|
---|
306 | * @param cbStack See RTThreadCreate.
|
---|
307 | * @param enmType See RTThreadCreate.
|
---|
308 | * @param fFlags See RTThreadCreate.
|
---|
309 | * @param pszName Thread name format.
|
---|
310 | * @param ... Format arguments.
|
---|
311 | */
|
---|
312 | RTDECL(int) RTThreadCreateF(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
|
---|
313 | RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, ...);
|
---|
314 |
|
---|
315 | /**
|
---|
316 | * Gets the native thread id of a IPRT thread.
|
---|
317 | *
|
---|
318 | * @returns The native thread id.
|
---|
319 | * @param Thread The IPRT thread.
|
---|
320 | */
|
---|
321 | RTDECL(RTNATIVETHREAD) RTThreadGetNative(RTTHREAD Thread);
|
---|
322 |
|
---|
323 | /**
|
---|
324 | * Gets the IPRT thread of a native thread.
|
---|
325 | *
|
---|
326 | * @returns The IPRT thread handle
|
---|
327 | * @returns NIL_RTTHREAD if not a thread known to IPRT.
|
---|
328 | * @param NativeThread The native thread handle/id.
|
---|
329 | */
|
---|
330 | RTDECL(RTTHREAD) RTThreadFromNative(RTNATIVETHREAD NativeThread);
|
---|
331 |
|
---|
332 | /**
|
---|
333 | * Changes the type of the specified thread.
|
---|
334 | *
|
---|
335 | * @returns iprt status code.
|
---|
336 | * @param Thread The thread which type should be changed.
|
---|
337 | * @param enmType The new thread type.
|
---|
338 | * @remark In Ring-0 it only works if Thread == RTThreadSelf().
|
---|
339 | */
|
---|
340 | RTDECL(int) RTThreadSetType(RTTHREAD Thread, RTTHREADTYPE enmType);
|
---|
341 |
|
---|
342 | /**
|
---|
343 | * Wait for the thread to terminate, resume on interruption.
|
---|
344 | *
|
---|
345 | * @returns iprt status code.
|
---|
346 | * Will not return VERR_INTERRUPTED.
|
---|
347 | * @param Thread The thread to wait for.
|
---|
348 | * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
|
---|
349 | * an indefinite wait.
|
---|
350 | * @param prc Where to store the return code of the thread. Optional.
|
---|
351 | */
|
---|
352 | RTDECL(int) RTThreadWait(RTTHREAD Thread, RTMSINTERVAL cMillies, int *prc);
|
---|
353 |
|
---|
354 | /**
|
---|
355 | * Wait for the thread to terminate, return on interruption.
|
---|
356 | *
|
---|
357 | * @returns iprt status code.
|
---|
358 | * @param Thread The thread to wait for.
|
---|
359 | * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
|
---|
360 | * an indefinite wait.
|
---|
361 | * @param prc Where to store the return code of the thread. Optional.
|
---|
362 | */
|
---|
363 | RTDECL(int) RTThreadWaitNoResume(RTTHREAD Thread, RTMSINTERVAL cMillies, int *prc);
|
---|
364 |
|
---|
365 | /**
|
---|
366 | * Gets the name of the current thread thread.
|
---|
367 | *
|
---|
368 | * @returns Pointer to readonly name string.
|
---|
369 | * @returns NULL on failure.
|
---|
370 | */
|
---|
371 | RTDECL(const char *) RTThreadSelfName(void);
|
---|
372 |
|
---|
373 | /**
|
---|
374 | * Gets the name of a thread.
|
---|
375 | *
|
---|
376 | * @returns Pointer to readonly name string.
|
---|
377 | * @returns NULL on failure.
|
---|
378 | * @param Thread Thread handle of the thread to query the name of.
|
---|
379 | */
|
---|
380 | RTDECL(const char *) RTThreadGetName(RTTHREAD Thread);
|
---|
381 |
|
---|
382 | /**
|
---|
383 | * Gets the type of the specified thread.
|
---|
384 | *
|
---|
385 | * @returns The thread type.
|
---|
386 | * @returns RTTHREADTYPE_INVALID if the thread handle is invalid.
|
---|
387 | * @param Thread The thread in question.
|
---|
388 | */
|
---|
389 | RTDECL(RTTHREADTYPE) RTThreadGetType(RTTHREAD Thread);
|
---|
390 |
|
---|
391 | /**
|
---|
392 | * Sets the name of a thread.
|
---|
393 | *
|
---|
394 | * @returns iprt status code.
|
---|
395 | * @param Thread Thread handle of the thread to query the name of.
|
---|
396 | * @param pszName The thread name.
|
---|
397 | */
|
---|
398 | RTDECL(int) RTThreadSetName(RTTHREAD Thread, const char *pszName);
|
---|
399 |
|
---|
400 | /**
|
---|
401 | * Checks if the specified thread is the main thread.
|
---|
402 | *
|
---|
403 | * @returns true if it is, false if it isn't.
|
---|
404 | *
|
---|
405 | * @param hThread The thread handle.
|
---|
406 | */
|
---|
407 | RTDECL(bool) RTThreadIsMain(RTTHREAD hThread);
|
---|
408 |
|
---|
409 | /**
|
---|
410 | * Checks if the calling thread is known to IPRT.
|
---|
411 | *
|
---|
412 | * @returns @c true if it is, @c false if it isn't.
|
---|
413 | */
|
---|
414 | RTDECL(bool) RTThreadIsSelfKnown(void);
|
---|
415 |
|
---|
416 | /**
|
---|
417 | * Checks if the calling thread is know to IPRT and is alive.
|
---|
418 | *
|
---|
419 | * @returns @c true if it is, @c false if it isn't.
|
---|
420 | */
|
---|
421 | RTDECL(bool) RTThreadIsSelfAlive(void);
|
---|
422 |
|
---|
423 | /**
|
---|
424 | * Checks if the calling thread is known to IPRT.
|
---|
425 | *
|
---|
426 | * @returns @c true if it is, @c false if it isn't.
|
---|
427 | */
|
---|
428 | RTDECL(bool) RTThreadIsOperational(void);
|
---|
429 |
|
---|
430 | /**
|
---|
431 | * Signal the user event.
|
---|
432 | *
|
---|
433 | * @returns iprt status code.
|
---|
434 | */
|
---|
435 | RTDECL(int) RTThreadUserSignal(RTTHREAD Thread);
|
---|
436 |
|
---|
437 | /**
|
---|
438 | * Wait for the user event.
|
---|
439 | *
|
---|
440 | * @returns iprt status code.
|
---|
441 | * @param Thread The thread to wait for.
|
---|
442 | * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
|
---|
443 | * an indefinite wait.
|
---|
444 | */
|
---|
445 | RTDECL(int) RTThreadUserWait(RTTHREAD Thread, RTMSINTERVAL cMillies);
|
---|
446 |
|
---|
447 | /**
|
---|
448 | * Wait for the user event, return on interruption.
|
---|
449 | *
|
---|
450 | * @returns iprt status code.
|
---|
451 | * @param Thread The thread to wait for.
|
---|
452 | * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
|
---|
453 | * an indefinite wait.
|
---|
454 | */
|
---|
455 | RTDECL(int) RTThreadUserWaitNoResume(RTTHREAD Thread, RTMSINTERVAL cMillies);
|
---|
456 |
|
---|
457 | /**
|
---|
458 | * Reset the user event.
|
---|
459 | *
|
---|
460 | * @returns iprt status code.
|
---|
461 | * @param Thread The thread to reset.
|
---|
462 | */
|
---|
463 | RTDECL(int) RTThreadUserReset(RTTHREAD Thread);
|
---|
464 |
|
---|
465 | /**
|
---|
466 | * Pokes the thread.
|
---|
467 | *
|
---|
468 | * This will signal the thread, attempting to interrupt whatever it's currently
|
---|
469 | * doing. This is *NOT* implemented on all platforms and may cause unresolved
|
---|
470 | * symbols during linking or VERR_NOT_IMPLEMENTED at runtime.
|
---|
471 | *
|
---|
472 | * @returns IPRT status code.
|
---|
473 | *
|
---|
474 | * @param hThread The thread to poke. This must not be the
|
---|
475 | * calling thread.
|
---|
476 | */
|
---|
477 | RTDECL(int) RTThreadPoke(RTTHREAD hThread);
|
---|
478 |
|
---|
479 | # ifdef IN_RING0
|
---|
480 |
|
---|
481 | /**
|
---|
482 | * Check if preemption is currently enabled or not for the current thread.
|
---|
483 | *
|
---|
484 | * @note This may return true even on systems where preemption isn't
|
---|
485 | * possible. In that case, it means no call to RTThreadPreemptDisable
|
---|
486 | * has been made and interrupts are still enabled.
|
---|
487 | *
|
---|
488 | * @returns true if preemption is enabled, false if preemetion is disabled.
|
---|
489 | * @param hThread Must be NIL_RTTHREAD for now.
|
---|
490 | */
|
---|
491 | RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread);
|
---|
492 |
|
---|
493 | /**
|
---|
494 | * Check if preemption is pending for the current thread.
|
---|
495 | *
|
---|
496 | * This function should be called regularly when executing larger portions of
|
---|
497 | * code with preemption disabled.
|
---|
498 | *
|
---|
499 | * @returns true if pending, false if not.
|
---|
500 | * @param hThread Must be NIL_RTTHREAD for now.
|
---|
501 | */
|
---|
502 | RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread);
|
---|
503 |
|
---|
504 | /**
|
---|
505 | * Is RTThreadPreemptIsPending reliable?
|
---|
506 | *
|
---|
507 | * @returns true if reliable, false if not.
|
---|
508 | */
|
---|
509 | RTDECL(bool) RTThreadPreemptIsPendingTrusty(void);
|
---|
510 |
|
---|
511 | /**
|
---|
512 | * Is preemption possible on this system.
|
---|
513 | *
|
---|
514 | * @returns true if possible, false if not.
|
---|
515 | */
|
---|
516 | RTDECL(bool) RTThreadPreemptIsPossible(void);
|
---|
517 |
|
---|
518 | /**
|
---|
519 | * Preemption state saved by RTThreadPreemptDisable and used by
|
---|
520 | * RTThreadPreemptRestore to restore the previous state.
|
---|
521 | */
|
---|
522 | typedef struct RTTHREADPREEMPTSTATE
|
---|
523 | {
|
---|
524 | /** In debug builds this will be used to check for cpu migration. */
|
---|
525 | RTCPUID idCpu;
|
---|
526 | # ifdef RT_OS_WINDOWS
|
---|
527 | /** The old IRQL. Don't touch! */
|
---|
528 | unsigned char uchOldIrql;
|
---|
529 | /** Reserved, MBZ. */
|
---|
530 | uint8_t bReserved1;
|
---|
531 | /** Reserved, MBZ. */
|
---|
532 | uint8_t bReserved2;
|
---|
533 | /** Reserved, MBZ. */
|
---|
534 | uint8_t bReserved3;
|
---|
535 | # define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 255, 0, 0, 0 }
|
---|
536 | # elif defined(RT_OS_HAIKU)
|
---|
537 | /** The cpu_state. Don't touch! */
|
---|
538 | uint32_t uOldCpuState;
|
---|
539 | # define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 0 }
|
---|
540 | # elif defined(RT_OS_SOLARIS)
|
---|
541 | /** The Old PIL. Don't touch! */
|
---|
542 | uint32_t uOldPil;
|
---|
543 | # define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, UINT32_MAX }
|
---|
544 | # else
|
---|
545 | /** Reserved, MBZ. */
|
---|
546 | uint32_t u32Reserved;
|
---|
547 | # define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 0 }
|
---|
548 | # endif
|
---|
549 | } RTTHREADPREEMPTSTATE;
|
---|
550 | /** Pointer to a preemption state. */
|
---|
551 | typedef RTTHREADPREEMPTSTATE *PRTTHREADPREEMPTSTATE;
|
---|
552 |
|
---|
553 | /**
|
---|
554 | * Disable preemption.
|
---|
555 | *
|
---|
556 | * A call to this function must be matched by exactly one call to
|
---|
557 | * RTThreadPreemptRestore().
|
---|
558 | *
|
---|
559 | * @param pState Where to store the preemption state.
|
---|
560 | */
|
---|
561 | RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState);
|
---|
562 |
|
---|
563 | /**
|
---|
564 | * Restores the preemption state, undoing a previous call to
|
---|
565 | * RTThreadPreemptDisable.
|
---|
566 | *
|
---|
567 | * A call to this function must be matching a previous call to
|
---|
568 | * RTThreadPreemptDisable.
|
---|
569 | *
|
---|
570 | * @param pState The state return by RTThreadPreemptDisable.
|
---|
571 | */
|
---|
572 | RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState);
|
---|
573 |
|
---|
574 | /**
|
---|
575 | * Check if the thread is executing in interrupt context.
|
---|
576 | *
|
---|
577 | * @returns true if in interrupt context, false if not.
|
---|
578 | * @param hThread Must be NIL_RTTHREAD for now.
|
---|
579 | */
|
---|
580 | RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread);
|
---|
581 |
|
---|
582 |
|
---|
583 | /**
|
---|
584 | * Thread-context events.
|
---|
585 | */
|
---|
586 | typedef enum RTTHREADCTXEVENT
|
---|
587 | {
|
---|
588 | /** This thread is about to be preempted. */
|
---|
589 | RTTHREADCTXEVENT_PREEMPTING = 0,
|
---|
590 | /** This thread has just been resumed. */
|
---|
591 | RTTHREADCTXEVENT_RESUMED,
|
---|
592 | /** The usual 32-bit size hack. */
|
---|
593 | RTTHREADCTXEVENT_32BIT_HACK = 0x7fffffff
|
---|
594 | } RTTHREADCTXEVENT;
|
---|
595 |
|
---|
596 | /**
|
---|
597 | * Thread-context hook.
|
---|
598 | *
|
---|
599 | * @returns IPRT status code.
|
---|
600 | * @param enmEvent The thread-context event.
|
---|
601 | * @param pvUser User argument.
|
---|
602 | *
|
---|
603 | * @remarks This function may be called under different contexts, i.e. with
|
---|
604 | * different locks held, with/without preemption disabled depending on
|
---|
605 | * the event in @a enmEvent.
|
---|
606 | */
|
---|
607 | typedef DECLCALLBACK(void) FNRTTHREADCTXHOOK(RTTHREADCTXEVENT enmEvent, void *pvUser);
|
---|
608 | /** Pointer to a thread-context hook. */
|
---|
609 | typedef FNRTTHREADCTXHOOK *PFNRTTHREADCTXHOOK;
|
---|
610 |
|
---|
611 | /**
|
---|
612 | * Initializes a thread-context hook for the current thread.
|
---|
613 | *
|
---|
614 | * This must be called once per-thread before using RTThreadCtxHooksRegister().
|
---|
615 | *
|
---|
616 | * @returns IPRT status code.
|
---|
617 | * @param phThreadCtx Where to store the thread-context handle.
|
---|
618 | *
|
---|
619 | * @remarks This must be called with preemption enabled!
|
---|
620 | */
|
---|
621 | RTDECL(int) RTThreadCtxHooksCreate(PRTTHREADCTX phThreadCtx);
|
---|
622 |
|
---|
623 | /**
|
---|
624 | * Retains a new reference to a thread-context hook.
|
---|
625 | *
|
---|
626 | * @returns New reference count.
|
---|
627 | * UINT32_MAX is returned if the handle is invalid (asserted).
|
---|
628 | * @param phThreadCtx Pointer to the thread-context handle.
|
---|
629 | *
|
---|
630 | * @remarks This can be called from any thread. Can be called with preemption
|
---|
631 | * disabled.
|
---|
632 | */
|
---|
633 | RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx);
|
---|
634 |
|
---|
635 | /**
|
---|
636 | * Releases a reference to a thread-context hook.
|
---|
637 | *
|
---|
638 | * @returns New reference count.
|
---|
639 | * @retval 0 if the thread-context hook was freed or @a hThreadCtx is
|
---|
640 | * NIL_RTTHREADCTX.
|
---|
641 | * @retval UINT32_MAX is returned if the handle is invalid (asserted).
|
---|
642 | *
|
---|
643 | * @param hThreadCtx The thread-context handle.
|
---|
644 | *
|
---|
645 | * @remarks This can be called from any thread but must be called with
|
---|
646 | * preemption enabled!
|
---|
647 | */
|
---|
648 | RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx);
|
---|
649 |
|
---|
650 | /**
|
---|
651 | * Registers a thread-context hook for the current thread to receive
|
---|
652 | * notifications for all supported thread-context events.
|
---|
653 | *
|
---|
654 | * @returns IPRT status code.
|
---|
655 | * @param hThreadCtx The thread-context handle.
|
---|
656 | * @param pfnThreadHook Pointer to a thread-context hook (a callback)
|
---|
657 | * for all thread-context events.
|
---|
658 | * @param pvUser User argument (optional, can be NULL).
|
---|
659 | *
|
---|
660 | * @remarks Can be called with preemption disabled.
|
---|
661 | */
|
---|
662 | RTDECL(int) RTThreadCtxHooksRegister(RTTHREADCTX hThreadCtx, PFNRTTHREADCTXHOOK pfnThreadHook, void *pvUser);
|
---|
663 |
|
---|
664 | /**
|
---|
665 | * Deregisters the thread-context hook for the current thread.
|
---|
666 | *
|
---|
667 | * @returns IPRT status code.
|
---|
668 | * @param hThreadCtx The thread-context handle.
|
---|
669 | *
|
---|
670 | * @remarks Can be called with preemption disabled.
|
---|
671 | */
|
---|
672 | RTDECL(int) RTThreadCtxHooksDeregister(RTTHREADCTX hThreadCtx);
|
---|
673 |
|
---|
674 | /**
|
---|
675 | * Are thread-context hooks registered for the thread?
|
---|
676 | *
|
---|
677 | * @returns true if registered, false if not supported or not registered.
|
---|
678 | * @param hThreadCtx The thread-context handle.
|
---|
679 | *
|
---|
680 | * @remarks Can be called from any thread (but possibility of races when
|
---|
681 | * it's not the current thread!)
|
---|
682 | */
|
---|
683 | RTDECL(bool) RTThreadCtxHooksAreRegistered(RTTHREADCTX hThreadCtx);
|
---|
684 |
|
---|
685 | # endif /* IN_RING0 */
|
---|
686 |
|
---|
687 |
|
---|
688 | # ifdef IN_RING3
|
---|
689 |
|
---|
690 | /**
|
---|
691 | * Adopts a non-IPRT thread.
|
---|
692 | *
|
---|
693 | * @returns IPRT status code.
|
---|
694 | * @param enmType The thread type.
|
---|
695 | * @param fFlags The thread flags. RTTHREADFLAGS_WAITABLE is not currently allowed.
|
---|
696 | * @param pszName The thread name. Optional
|
---|
697 | * @param pThread Where to store the thread handle. Optional.
|
---|
698 | */
|
---|
699 | RTDECL(int) RTThreadAdopt(RTTHREADTYPE enmType, unsigned fFlags, const char *pszName, PRTTHREAD pThread);
|
---|
700 |
|
---|
701 | /**
|
---|
702 | * Get the thread handle of the current thread, automatically adopting alien
|
---|
703 | * threads.
|
---|
704 | *
|
---|
705 | * @returns Thread handle.
|
---|
706 | */
|
---|
707 | RTDECL(RTTHREAD) RTThreadSelfAutoAdopt(void);
|
---|
708 |
|
---|
709 | /**
|
---|
710 | * Gets the affinity mask of the current thread.
|
---|
711 | *
|
---|
712 | * @returns IPRT status code.
|
---|
713 | * @param pCpuSet Where to return the CPU affienty set of the calling
|
---|
714 | * thread.
|
---|
715 | */
|
---|
716 | RTR3DECL(int) RTThreadGetAffinity(PRTCPUSET pCpuSet);
|
---|
717 |
|
---|
718 | /**
|
---|
719 | * Sets the affinity mask of the current thread.
|
---|
720 | *
|
---|
721 | * @returns iprt status code.
|
---|
722 | * @param pCpuSet The set of CPUs this thread can run on. NULL means
|
---|
723 | * all CPUs.
|
---|
724 | */
|
---|
725 | RTR3DECL(int) RTThreadSetAffinity(PCRTCPUSET pCpuSet);
|
---|
726 |
|
---|
727 | /**
|
---|
728 | * Binds the thread to one specific CPU.
|
---|
729 | *
|
---|
730 | * @returns iprt status code.
|
---|
731 | * @param idCpu The ID of the CPU to bind this thread to. Use
|
---|
732 | * NIL_RTCPUID to unbind it.
|
---|
733 | */
|
---|
734 | RTR3DECL(int) RTThreadSetAffinityToCpu(RTCPUID idCpu);
|
---|
735 |
|
---|
736 | /**
|
---|
737 | * Unblocks a thread.
|
---|
738 | *
|
---|
739 | * This function is paired with RTThreadBlocking and RTThreadBlockingDebug.
|
---|
740 | *
|
---|
741 | * @param hThread The current thread.
|
---|
742 | * @param enmCurState The current state, used to check for nested blocking.
|
---|
743 | * The new state will be running.
|
---|
744 | */
|
---|
745 | RTDECL(void) RTThreadUnblocked(RTTHREAD hThread, RTTHREADSTATE enmCurState);
|
---|
746 |
|
---|
747 | /**
|
---|
748 | * Change the thread state to blocking.
|
---|
749 | *
|
---|
750 | * @param hThread The current thread.
|
---|
751 | * @param enmState The sleep state.
|
---|
752 | * @param fReallySleeping Really going to sleep now. Use false before calls
|
---|
753 | * to other IPRT synchronization methods.
|
---|
754 | */
|
---|
755 | RTDECL(void) RTThreadBlocking(RTTHREAD hThread, RTTHREADSTATE enmState, bool fReallySleeping);
|
---|
756 |
|
---|
757 | /**
|
---|
758 | * Get the current thread state.
|
---|
759 | *
|
---|
760 | * A thread that is reported as sleeping may actually still be running inside
|
---|
761 | * the lock validator or/and in the code of some other IPRT synchronization
|
---|
762 | * primitive. Use RTThreadGetReallySleeping
|
---|
763 | *
|
---|
764 | * @returns The thread state.
|
---|
765 | * @param hThread The thread.
|
---|
766 | */
|
---|
767 | RTDECL(RTTHREADSTATE) RTThreadGetState(RTTHREAD hThread);
|
---|
768 |
|
---|
769 | /**
|
---|
770 | * Checks if the thread is really sleeping or not.
|
---|
771 | *
|
---|
772 | * @returns RTTHREADSTATE_RUNNING if not really sleeping, otherwise the state it
|
---|
773 | * is sleeping in.
|
---|
774 | * @param hThread The thread.
|
---|
775 | */
|
---|
776 | RTDECL(RTTHREADSTATE) RTThreadGetReallySleeping(RTTHREAD hThread);
|
---|
777 |
|
---|
778 | /**
|
---|
779 | * Translate a thread state into a string.
|
---|
780 | *
|
---|
781 | * @returns Pointer to a read-only string containing the state name.
|
---|
782 | * @param enmState The state.
|
---|
783 | */
|
---|
784 | RTDECL(const char *) RTThreadStateName(RTTHREADSTATE enmState);
|
---|
785 |
|
---|
786 |
|
---|
787 | /**
|
---|
788 | * Native thread states returned by RTThreadNativeState.
|
---|
789 | */
|
---|
790 | typedef enum RTTHREADNATIVESTATE
|
---|
791 | {
|
---|
792 | /** Invalid thread handle. */
|
---|
793 | RTTHREADNATIVESTATE_INVALID = 0,
|
---|
794 | /** Unable to determine the thread state. */
|
---|
795 | RTTHREADNATIVESTATE_UNKNOWN,
|
---|
796 | /** The thread is running. */
|
---|
797 | RTTHREADNATIVESTATE_RUNNING,
|
---|
798 | /** The thread is blocked. */
|
---|
799 | RTTHREADNATIVESTATE_BLOCKED,
|
---|
800 | /** The thread is suspended / stopped. */
|
---|
801 | RTTHREADNATIVESTATE_SUSPENDED,
|
---|
802 | /** The thread has terminated. */
|
---|
803 | RTTHREADNATIVESTATE_TERMINATED,
|
---|
804 | /** Make sure it's a 32-bit type. */
|
---|
805 | RTTHREADNATIVESTATE_32BIT_HACK = 0x7fffffff
|
---|
806 | } RTTHREADNATIVESTATE;
|
---|
807 |
|
---|
808 |
|
---|
809 | /**
|
---|
810 | * Get the native state of a thread.
|
---|
811 | *
|
---|
812 | * @returns Native state.
|
---|
813 | * @param hThread The thread handle.
|
---|
814 | *
|
---|
815 | * @remarks Not yet implemented on all systems, so have a backup plan for
|
---|
816 | * RTTHREADNATIVESTATE_UNKNOWN.
|
---|
817 | */
|
---|
818 | RTDECL(RTTHREADNATIVESTATE) RTThreadGetNativeState(RTTHREAD hThread);
|
---|
819 |
|
---|
820 |
|
---|
821 | /**
|
---|
822 | * Get the execution times of the specified thread
|
---|
823 | *
|
---|
824 | * @returns IPRT status code.
|
---|
825 | * @param pKernelTime Kernel execution time in ms (out)
|
---|
826 | * @param pUserTime User execution time in ms (out)
|
---|
827 | *
|
---|
828 | */
|
---|
829 | RTR3DECL(int) RTThreadGetExecutionTimeMilli(uint64_t *pKernelTime, uint64_t *pUserTime);
|
---|
830 |
|
---|
831 | /** @name Thread Local Storage
|
---|
832 | * @{
|
---|
833 | */
|
---|
834 | /**
|
---|
835 | * Thread termination callback for destroying a non-zero TLS entry.
|
---|
836 | *
|
---|
837 | * @remarks It is not permitable to use any RTTls APIs at this time. Doing so
|
---|
838 | * may lead to endless loops, crashes, and other bad stuff.
|
---|
839 | *
|
---|
840 | * @param pvValue The current value.
|
---|
841 | */
|
---|
842 | typedef DECLCALLBACK(void) FNRTTLSDTOR(void *pvValue);
|
---|
843 | /** Pointer to a FNRTTLSDTOR. */
|
---|
844 | typedef FNRTTLSDTOR *PFNRTTLSDTOR;
|
---|
845 |
|
---|
846 | /**
|
---|
847 | * Allocates a TLS entry (index).
|
---|
848 | *
|
---|
849 | * Example code:
|
---|
850 | * @code
|
---|
851 | RTTLS g_iTls = NIL_RTTLS;
|
---|
852 |
|
---|
853 | ...
|
---|
854 |
|
---|
855 | // once for the process, allocate the TLS index
|
---|
856 | if (g_iTls == NIL_RTTLS)
|
---|
857 | g_iTls = RTTlsAlloc();
|
---|
858 |
|
---|
859 | // set the thread-local value.
|
---|
860 | RTTlsSet(g_iTls, pMyData);
|
---|
861 |
|
---|
862 | ...
|
---|
863 |
|
---|
864 | // get the thread-local value
|
---|
865 | PMYDATA pMyData = (PMYDATA)RTTlsGet(g_iTls);
|
---|
866 |
|
---|
867 | @endcode
|
---|
868 | *
|
---|
869 | * @returns the index of the allocated TLS entry.
|
---|
870 | * @returns NIL_RTTLS on failure.
|
---|
871 | */
|
---|
872 | RTR3DECL(RTTLS) RTTlsAlloc(void);
|
---|
873 |
|
---|
874 | /**
|
---|
875 | * Variant of RTTlsAlloc that returns a status code.
|
---|
876 | *
|
---|
877 | * @returns IPRT status code.
|
---|
878 | * @retval VERR_NOT_SUPPORTED if pfnDestructor is non-NULL and the platform
|
---|
879 | * doesn't support this feature.
|
---|
880 | *
|
---|
881 | * @param piTls Where to store the index of the allocated TLS entry.
|
---|
882 | * This is set to NIL_RTTLS on failure.
|
---|
883 | * @param pfnDestructor Optional callback function for cleaning up on
|
---|
884 | * thread termination. WARNING! This feature may not
|
---|
885 | * be implemented everywhere.
|
---|
886 | */
|
---|
887 | RTR3DECL(int) RTTlsAllocEx(PRTTLS piTls, PFNRTTLSDTOR pfnDestructor);
|
---|
888 |
|
---|
889 | /**
|
---|
890 | * Frees a TLS entry.
|
---|
891 | *
|
---|
892 | * @returns IPRT status code.
|
---|
893 | * @param iTls The index of the TLS entry.
|
---|
894 | */
|
---|
895 | RTR3DECL(int) RTTlsFree(RTTLS iTls);
|
---|
896 |
|
---|
897 | /**
|
---|
898 | * Get the (thread-local) value stored in a TLS entry.
|
---|
899 | *
|
---|
900 | * @returns value in given TLS entry.
|
---|
901 | * @retval NULL if RTTlsSet() has not yet been called on this thread, or if the
|
---|
902 | * TLS index is invalid.
|
---|
903 | *
|
---|
904 | * @param iTls The index of the TLS entry.
|
---|
905 | */
|
---|
906 | RTR3DECL(void *) RTTlsGet(RTTLS iTls);
|
---|
907 |
|
---|
908 | /**
|
---|
909 | * Get the value stored in a TLS entry.
|
---|
910 | *
|
---|
911 | * @returns IPRT status code.
|
---|
912 | * @param iTls The index of the TLS entry.
|
---|
913 | * @param ppvValue Where to store the value. The value will be NULL if
|
---|
914 | * RTTlsSet has not yet been called on this thread.
|
---|
915 | */
|
---|
916 | RTR3DECL(int) RTTlsGetEx(RTTLS iTls, void **ppvValue);
|
---|
917 |
|
---|
918 | /**
|
---|
919 | * Set the value stored in an allocated TLS entry.
|
---|
920 | *
|
---|
921 | * @returns IPRT status.
|
---|
922 | * @param iTls The index of the TLS entry.
|
---|
923 | * @param pvValue The value to store.
|
---|
924 | *
|
---|
925 | * @remarks Note that NULL is considered a special value.
|
---|
926 | */
|
---|
927 | RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue);
|
---|
928 |
|
---|
929 | /** @} */
|
---|
930 |
|
---|
931 | # endif /* IN_RING3 */
|
---|
932 | # endif /* !IN_RC */
|
---|
933 |
|
---|
934 | /** @} */
|
---|
935 |
|
---|
936 | RT_C_DECLS_END
|
---|
937 |
|
---|
938 | #endif
|
---|
939 |
|
---|