VirtualBox

source: vbox/trunk/include/iprt/thread.h@ 55286

Last change on this file since 55286 was 52644, checked in by vboxsync, 10 years ago

s/RT_OS_WINDOWS/!RT_OS_LINUX/

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 29.2 KB
Line 
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
34RT_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 */
44typedef 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 */
90typedef 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 */
176RTDECL(bool) RTThreadIsInitialized(void);
177
178/**
179 * Get the thread handle of the current thread.
180 *
181 * @returns Thread handle.
182 */
183RTDECL(RTTHREAD) RTThreadSelf(void);
184
185/**
186 * Get the native thread handle of the current thread.
187 *
188 * @returns Native thread handle.
189 */
190RTDECL(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 */
202RTDECL(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 */
218RTDECL(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 */
226RTDECL(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 */
237typedef DECLCALLBACK(int) FNRTTHREAD(RTTHREAD ThreadSelf, void *pvUser);
238/** Pointer to a FNRTTHREAD(). */
239typedef FNRTTHREAD *PFNRTTHREAD;
240
241/**
242 * Thread creation flags.
243 */
244typedef 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 */
276RTDECL(int) RTThreadCreate(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
277 RTTHREADTYPE enmType, unsigned fFlags, const char *pszName);
278#ifndef RT_OS_LINUX /* XXX crashes genksyms at least on 32-bit Linux hosts */
279/** @copydoc RTThreadCreate */
280typedef DECLCALLBACKPTR(int, PFNRTTHREADCREATE)(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
281 RTTHREADTYPE enmType, unsigned fFlags, const char *pszName);
282#endif
283
284
285/**
286 * Create a new thread.
287 *
288 * Same as RTThreadCreate except the name is given in the RTStrPrintfV form.
289 *
290 * @returns iprt status code.
291 * @param pThread See RTThreadCreate.
292 * @param pfnThread See RTThreadCreate.
293 * @param pvUser See RTThreadCreate.
294 * @param cbStack See RTThreadCreate.
295 * @param enmType See RTThreadCreate.
296 * @param fFlags See RTThreadCreate.
297 * @param pszName Thread name format.
298 * @param va Format arguments.
299 */
300RTDECL(int) RTThreadCreateV(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
301 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, va_list va);
302
303/**
304 * Create a new thread.
305 *
306 * Same as RTThreadCreate except the name is given in the RTStrPrintf form.
307 *
308 * @returns iprt status code.
309 * @param pThread See RTThreadCreate.
310 * @param pfnThread See RTThreadCreate.
311 * @param pvUser See RTThreadCreate.
312 * @param cbStack See RTThreadCreate.
313 * @param enmType See RTThreadCreate.
314 * @param fFlags See RTThreadCreate.
315 * @param pszName Thread name format.
316 * @param ... Format arguments.
317 */
318RTDECL(int) RTThreadCreateF(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack,
319 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, ...);
320
321/**
322 * Gets the native thread id of a IPRT thread.
323 *
324 * @returns The native thread id.
325 * @param Thread The IPRT thread.
326 */
327RTDECL(RTNATIVETHREAD) RTThreadGetNative(RTTHREAD Thread);
328
329/**
330 * Gets the IPRT thread of a native thread.
331 *
332 * @returns The IPRT thread handle
333 * @returns NIL_RTTHREAD if not a thread known to IPRT.
334 * @param NativeThread The native thread handle/id.
335 */
336RTDECL(RTTHREAD) RTThreadFromNative(RTNATIVETHREAD NativeThread);
337
338/**
339 * Changes the type of the specified thread.
340 *
341 * @returns iprt status code.
342 * @param Thread The thread which type should be changed.
343 * @param enmType The new thread type.
344 * @remark In Ring-0 it only works if Thread == RTThreadSelf().
345 */
346RTDECL(int) RTThreadSetType(RTTHREAD Thread, RTTHREADTYPE enmType);
347
348/**
349 * Wait for the thread to terminate, resume on interruption.
350 *
351 * @returns iprt status code.
352 * Will not return VERR_INTERRUPTED.
353 * @param Thread The thread to wait for.
354 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
355 * an indefinite wait.
356 * @param prc Where to store the return code of the thread. Optional.
357 */
358RTDECL(int) RTThreadWait(RTTHREAD Thread, RTMSINTERVAL cMillies, int *prc);
359
360/**
361 * Wait for the thread to terminate, return on interruption.
362 *
363 * @returns iprt status code.
364 * @param Thread The thread to wait for.
365 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
366 * an indefinite wait.
367 * @param prc Where to store the return code of the thread. Optional.
368 */
369RTDECL(int) RTThreadWaitNoResume(RTTHREAD Thread, RTMSINTERVAL cMillies, int *prc);
370
371/**
372 * Gets the name of the current thread thread.
373 *
374 * @returns Pointer to readonly name string.
375 * @returns NULL on failure.
376 */
377RTDECL(const char *) RTThreadSelfName(void);
378
379/**
380 * Gets the name of a thread.
381 *
382 * @returns Pointer to readonly name string.
383 * @returns NULL on failure.
384 * @param Thread Thread handle of the thread to query the name of.
385 */
386RTDECL(const char *) RTThreadGetName(RTTHREAD Thread);
387
388/**
389 * Gets the type of the specified thread.
390 *
391 * @returns The thread type.
392 * @returns RTTHREADTYPE_INVALID if the thread handle is invalid.
393 * @param Thread The thread in question.
394 */
395RTDECL(RTTHREADTYPE) RTThreadGetType(RTTHREAD Thread);
396
397/**
398 * Sets the name of a thread.
399 *
400 * @returns iprt status code.
401 * @param Thread Thread handle of the thread to query the name of.
402 * @param pszName The thread name.
403 */
404RTDECL(int) RTThreadSetName(RTTHREAD Thread, const char *pszName);
405
406/**
407 * Checks if the specified thread is the main thread.
408 *
409 * @returns true if it is, false if it isn't.
410 *
411 * @param hThread The thread handle.
412 */
413RTDECL(bool) RTThreadIsMain(RTTHREAD hThread);
414
415/**
416 * Checks if the calling thread is known to IPRT.
417 *
418 * @returns @c true if it is, @c false if it isn't.
419 */
420RTDECL(bool) RTThreadIsSelfKnown(void);
421
422/**
423 * Checks if the calling thread is know to IPRT and is alive.
424 *
425 * @returns @c true if it is, @c false if it isn't.
426 */
427RTDECL(bool) RTThreadIsSelfAlive(void);
428
429/**
430 * Checks if the calling thread is known to IPRT.
431 *
432 * @returns @c true if it is, @c false if it isn't.
433 */
434RTDECL(bool) RTThreadIsOperational(void);
435
436/**
437 * Signal the user event.
438 *
439 * @returns iprt status code.
440 */
441RTDECL(int) RTThreadUserSignal(RTTHREAD Thread);
442
443/**
444 * Wait for the user event.
445 *
446 * @returns iprt status code.
447 * @param Thread The thread to wait for.
448 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
449 * an indefinite wait.
450 */
451RTDECL(int) RTThreadUserWait(RTTHREAD Thread, RTMSINTERVAL cMillies);
452
453/**
454 * Wait for the user event, return on interruption.
455 *
456 * @returns iprt status code.
457 * @param Thread The thread to wait for.
458 * @param cMillies The number of milliseconds to wait. Use RT_INDEFINITE_WAIT for
459 * an indefinite wait.
460 */
461RTDECL(int) RTThreadUserWaitNoResume(RTTHREAD Thread, RTMSINTERVAL cMillies);
462
463/**
464 * Reset the user event.
465 *
466 * @returns iprt status code.
467 * @param Thread The thread to reset.
468 */
469RTDECL(int) RTThreadUserReset(RTTHREAD Thread);
470
471/**
472 * Pokes the thread.
473 *
474 * This will signal the thread, attempting to interrupt whatever it's currently
475 * doing. This is *NOT* implemented on all platforms and may cause unresolved
476 * symbols during linking or VERR_NOT_IMPLEMENTED at runtime.
477 *
478 * @returns IPRT status code.
479 *
480 * @param hThread The thread to poke. This must not be the
481 * calling thread.
482 */
483RTDECL(int) RTThreadPoke(RTTHREAD hThread);
484
485# ifdef IN_RING0
486
487/**
488 * Check if preemption is currently enabled or not for the current thread.
489 *
490 * @note This may return true even on systems where preemption isn't
491 * possible. In that case, it means no call to RTThreadPreemptDisable
492 * has been made and interrupts are still enabled.
493 *
494 * @returns true if preemption is enabled, false if preemetion is disabled.
495 * @param hThread Must be NIL_RTTHREAD for now.
496 */
497RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread);
498
499/**
500 * Check if preemption is pending for the current thread.
501 *
502 * This function should be called regularly when executing larger portions of
503 * code with preemption disabled.
504 *
505 * @returns true if pending, false if not.
506 * @param hThread Must be NIL_RTTHREAD for now.
507 */
508RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread);
509
510/**
511 * Is RTThreadPreemptIsPending reliable?
512 *
513 * @returns true if reliable, false if not.
514 */
515RTDECL(bool) RTThreadPreemptIsPendingTrusty(void);
516
517/**
518 * Is preemption possible on this system.
519 *
520 * @returns true if possible, false if not.
521 */
522RTDECL(bool) RTThreadPreemptIsPossible(void);
523
524/**
525 * Preemption state saved by RTThreadPreemptDisable and used by
526 * RTThreadPreemptRestore to restore the previous state.
527 */
528typedef struct RTTHREADPREEMPTSTATE
529{
530 /** In debug builds this will be used to check for cpu migration. */
531 RTCPUID idCpu;
532# ifdef RT_OS_WINDOWS
533 /** The old IRQL. Don't touch! */
534 unsigned char uchOldIrql;
535 /** Reserved, MBZ. */
536 uint8_t bReserved1;
537 /** Reserved, MBZ. */
538 uint8_t bReserved2;
539 /** Reserved, MBZ. */
540 uint8_t bReserved3;
541# define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 255, 0, 0, 0 }
542# elif defined(RT_OS_HAIKU)
543 /** The cpu_state. Don't touch! */
544 uint32_t uOldCpuState;
545# define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 0 }
546# elif defined(RT_OS_SOLARIS)
547 /** The Old PIL. Don't touch! */
548 uint32_t uOldPil;
549# define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, UINT32_MAX }
550# else
551 /** Reserved, MBZ. */
552 uint32_t u32Reserved;
553# define RTTHREADPREEMPTSTATE_INITIALIZER { NIL_RTCPUID, 0 }
554# endif
555} RTTHREADPREEMPTSTATE;
556/** Pointer to a preemption state. */
557typedef RTTHREADPREEMPTSTATE *PRTTHREADPREEMPTSTATE;
558
559/**
560 * Disable preemption.
561 *
562 * A call to this function must be matched by exactly one call to
563 * RTThreadPreemptRestore().
564 *
565 * @param pState Where to store the preemption state.
566 */
567RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState);
568
569/**
570 * Restores the preemption state, undoing a previous call to
571 * RTThreadPreemptDisable.
572 *
573 * A call to this function must be matching a previous call to
574 * RTThreadPreemptDisable.
575 *
576 * @param pState The state return by RTThreadPreemptDisable.
577 */
578RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState);
579
580/**
581 * Check if the thread is executing in interrupt context.
582 *
583 * @returns true if in interrupt context, false if not.
584 * @param hThread Must be NIL_RTTHREAD for now.
585 */
586RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread);
587
588
589/**
590 * Thread-context events.
591 */
592typedef enum RTTHREADCTXEVENT
593{
594 /** This thread is about to be preempted. */
595 RTTHREADCTXEVENT_PREEMPTING = 0,
596 /** This thread has just been resumed. */
597 RTTHREADCTXEVENT_RESUMED,
598 /** The usual 32-bit size hack. */
599 RTTHREADCTXEVENT_32BIT_HACK = 0x7fffffff
600} RTTHREADCTXEVENT;
601
602/**
603 * Thread-context hook.
604 *
605 * @returns IPRT status code.
606 * @param enmEvent The thread-context event.
607 * @param pvUser User argument.
608 *
609 * @remarks This function may be called under different contexts, i.e. with
610 * different locks held, with/without preemption disabled depending on
611 * the event in @a enmEvent.
612 */
613typedef DECLCALLBACK(void) FNRTTHREADCTXHOOK(RTTHREADCTXEVENT enmEvent, void *pvUser);
614/** Pointer to a thread-context hook. */
615typedef FNRTTHREADCTXHOOK *PFNRTTHREADCTXHOOK;
616
617/**
618 * Initializes a thread-context hook for the current thread.
619 *
620 * This must be called once per-thread before using RTThreadCtxHooksRegister().
621 *
622 * @returns IPRT status code.
623 * @param phThreadCtx Where to store the thread-context handle.
624 *
625 * @remarks This must be called with preemption enabled!
626 */
627RTDECL(int) RTThreadCtxHooksCreate(PRTTHREADCTX phThreadCtx);
628
629/**
630 * Retains a new reference to a thread-context hook.
631 *
632 * @returns New reference count.
633 * UINT32_MAX is returned if the handle is invalid (asserted).
634 * @param phThreadCtx Pointer to the thread-context handle.
635 *
636 * @remarks This can be called from any thread. Can be called with preemption
637 * disabled.
638 */
639RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx);
640
641/**
642 * Releases a reference to a thread-context hook.
643 *
644 * @returns New reference count.
645 * @retval 0 if the thread-context hook was freed or @a hThreadCtx is
646 * NIL_RTTHREADCTX.
647 * @retval UINT32_MAX is returned if the handle is invalid (asserted).
648 *
649 * @param hThreadCtx The thread-context handle.
650 *
651 * @remarks This can be called from any thread but must be called with
652 * preemption enabled!
653 */
654RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx);
655
656/**
657 * Registers a thread-context hook for the current thread to receive
658 * notifications for all supported thread-context events.
659 *
660 * @returns IPRT status code.
661 * @param hThreadCtx The thread-context handle.
662 * @param pfnThreadHook Pointer to a thread-context hook (a callback)
663 * for all thread-context events.
664 * @param pvUser User argument (optional, can be NULL).
665 *
666 * @remarks Can be called with preemption disabled.
667 */
668RTDECL(int) RTThreadCtxHooksRegister(RTTHREADCTX hThreadCtx, PFNRTTHREADCTXHOOK pfnThreadHook, void *pvUser);
669
670/**
671 * Deregisters the thread-context hook for the current thread.
672 *
673 * @returns IPRT status code.
674 * @param hThreadCtx The thread-context handle.
675 *
676 * @remarks Can be called with preemption disabled.
677 */
678RTDECL(int) RTThreadCtxHooksDeregister(RTTHREADCTX hThreadCtx);
679
680/**
681 * Are thread-context hooks registered for the thread?
682 *
683 * @returns true if registered, false if not supported or not registered.
684 * @param hThreadCtx The thread-context handle.
685 *
686 * @remarks Can be called from any thread (but possibility of races when
687 * it's not the current thread!)
688 */
689RTDECL(bool) RTThreadCtxHooksAreRegistered(RTTHREADCTX hThreadCtx);
690
691# endif /* IN_RING0 */
692
693
694# ifdef IN_RING3
695
696/**
697 * Adopts a non-IPRT thread.
698 *
699 * @returns IPRT status code.
700 * @param enmType The thread type.
701 * @param fFlags The thread flags. RTTHREADFLAGS_WAITABLE is not currently allowed.
702 * @param pszName The thread name. Optional
703 * @param pThread Where to store the thread handle. Optional.
704 */
705RTDECL(int) RTThreadAdopt(RTTHREADTYPE enmType, unsigned fFlags, const char *pszName, PRTTHREAD pThread);
706
707/**
708 * Get the thread handle of the current thread, automatically adopting alien
709 * threads.
710 *
711 * @returns Thread handle.
712 */
713RTDECL(RTTHREAD) RTThreadSelfAutoAdopt(void);
714
715/**
716 * Gets the affinity mask of the current thread.
717 *
718 * @returns IPRT status code.
719 * @param pCpuSet Where to return the CPU affienty set of the calling
720 * thread.
721 */
722RTR3DECL(int) RTThreadGetAffinity(PRTCPUSET pCpuSet);
723
724/**
725 * Sets the affinity mask of the current thread.
726 *
727 * @returns iprt status code.
728 * @param pCpuSet The set of CPUs this thread can run on. NULL means
729 * all CPUs.
730 */
731RTR3DECL(int) RTThreadSetAffinity(PCRTCPUSET pCpuSet);
732
733/**
734 * Binds the thread to one specific CPU.
735 *
736 * @returns iprt status code.
737 * @param idCpu The ID of the CPU to bind this thread to. Use
738 * NIL_RTCPUID to unbind it.
739 */
740RTR3DECL(int) RTThreadSetAffinityToCpu(RTCPUID idCpu);
741
742/**
743 * Unblocks a thread.
744 *
745 * This function is paired with RTThreadBlocking and RTThreadBlockingDebug.
746 *
747 * @param hThread The current thread.
748 * @param enmCurState The current state, used to check for nested blocking.
749 * The new state will be running.
750 */
751RTDECL(void) RTThreadUnblocked(RTTHREAD hThread, RTTHREADSTATE enmCurState);
752
753/**
754 * Change the thread state to blocking.
755 *
756 * @param hThread The current thread.
757 * @param enmState The sleep state.
758 * @param fReallySleeping Really going to sleep now. Use false before calls
759 * to other IPRT synchronization methods.
760 */
761RTDECL(void) RTThreadBlocking(RTTHREAD hThread, RTTHREADSTATE enmState, bool fReallySleeping);
762
763/**
764 * Get the current thread state.
765 *
766 * A thread that is reported as sleeping may actually still be running inside
767 * the lock validator or/and in the code of some other IPRT synchronization
768 * primitive. Use RTThreadGetReallySleeping
769 *
770 * @returns The thread state.
771 * @param hThread The thread.
772 */
773RTDECL(RTTHREADSTATE) RTThreadGetState(RTTHREAD hThread);
774
775/**
776 * Checks if the thread is really sleeping or not.
777 *
778 * @returns RTTHREADSTATE_RUNNING if not really sleeping, otherwise the state it
779 * is sleeping in.
780 * @param hThread The thread.
781 */
782RTDECL(RTTHREADSTATE) RTThreadGetReallySleeping(RTTHREAD hThread);
783
784/**
785 * Translate a thread state into a string.
786 *
787 * @returns Pointer to a read-only string containing the state name.
788 * @param enmState The state.
789 */
790RTDECL(const char *) RTThreadStateName(RTTHREADSTATE enmState);
791
792
793/**
794 * Native thread states returned by RTThreadNativeState.
795 */
796typedef enum RTTHREADNATIVESTATE
797{
798 /** Invalid thread handle. */
799 RTTHREADNATIVESTATE_INVALID = 0,
800 /** Unable to determine the thread state. */
801 RTTHREADNATIVESTATE_UNKNOWN,
802 /** The thread is running. */
803 RTTHREADNATIVESTATE_RUNNING,
804 /** The thread is blocked. */
805 RTTHREADNATIVESTATE_BLOCKED,
806 /** The thread is suspended / stopped. */
807 RTTHREADNATIVESTATE_SUSPENDED,
808 /** The thread has terminated. */
809 RTTHREADNATIVESTATE_TERMINATED,
810 /** Make sure it's a 32-bit type. */
811 RTTHREADNATIVESTATE_32BIT_HACK = 0x7fffffff
812} RTTHREADNATIVESTATE;
813
814
815/**
816 * Get the native state of a thread.
817 *
818 * @returns Native state.
819 * @param hThread The thread handle.
820 *
821 * @remarks Not yet implemented on all systems, so have a backup plan for
822 * RTTHREADNATIVESTATE_UNKNOWN.
823 */
824RTDECL(RTTHREADNATIVESTATE) RTThreadGetNativeState(RTTHREAD hThread);
825
826
827/**
828 * Get the execution times of the specified thread
829 *
830 * @returns IPRT status code.
831 * @param pKernelTime Kernel execution time in ms (out)
832 * @param pUserTime User execution time in ms (out)
833 *
834 */
835RTR3DECL(int) RTThreadGetExecutionTimeMilli(uint64_t *pKernelTime, uint64_t *pUserTime);
836
837/** @name Thread Local Storage
838 * @{
839 */
840/**
841 * Thread termination callback for destroying a non-zero TLS entry.
842 *
843 * @remarks It is not permitable to use any RTTls APIs at this time. Doing so
844 * may lead to endless loops, crashes, and other bad stuff.
845 *
846 * @param pvValue The current value.
847 */
848typedef DECLCALLBACK(void) FNRTTLSDTOR(void *pvValue);
849/** Pointer to a FNRTTLSDTOR. */
850typedef FNRTTLSDTOR *PFNRTTLSDTOR;
851
852/**
853 * Allocates a TLS entry (index).
854 *
855 * Example code:
856 * @code
857 RTTLS g_iTls = NIL_RTTLS;
858
859 ...
860
861 // once for the process, allocate the TLS index
862 if (g_iTls == NIL_RTTLS)
863 g_iTls = RTTlsAlloc();
864
865 // set the thread-local value.
866 RTTlsSet(g_iTls, pMyData);
867
868 ...
869
870 // get the thread-local value
871 PMYDATA pMyData = (PMYDATA)RTTlsGet(g_iTls);
872
873 @endcode
874 *
875 * @returns the index of the allocated TLS entry.
876 * @returns NIL_RTTLS on failure.
877 */
878RTR3DECL(RTTLS) RTTlsAlloc(void);
879
880/**
881 * Variant of RTTlsAlloc that returns a status code.
882 *
883 * @returns IPRT status code.
884 * @retval VERR_NOT_SUPPORTED if pfnDestructor is non-NULL and the platform
885 * doesn't support this feature.
886 *
887 * @param piTls Where to store the index of the allocated TLS entry.
888 * This is set to NIL_RTTLS on failure.
889 * @param pfnDestructor Optional callback function for cleaning up on
890 * thread termination. WARNING! This feature may not
891 * be implemented everywhere.
892 */
893RTR3DECL(int) RTTlsAllocEx(PRTTLS piTls, PFNRTTLSDTOR pfnDestructor);
894
895/**
896 * Frees a TLS entry.
897 *
898 * @returns IPRT status code.
899 * @param iTls The index of the TLS entry.
900 */
901RTR3DECL(int) RTTlsFree(RTTLS iTls);
902
903/**
904 * Get the (thread-local) value stored in a TLS entry.
905 *
906 * @returns value in given TLS entry.
907 * @retval NULL if RTTlsSet() has not yet been called on this thread, or if the
908 * TLS index is invalid.
909 *
910 * @param iTls The index of the TLS entry.
911 */
912RTR3DECL(void *) RTTlsGet(RTTLS iTls);
913
914/**
915 * Get the value stored in a TLS entry.
916 *
917 * @returns IPRT status code.
918 * @param iTls The index of the TLS entry.
919 * @param ppvValue Where to store the value. The value will be NULL if
920 * RTTlsSet has not yet been called on this thread.
921 */
922RTR3DECL(int) RTTlsGetEx(RTTLS iTls, void **ppvValue);
923
924/**
925 * Set the value stored in an allocated TLS entry.
926 *
927 * @returns IPRT status.
928 * @param iTls The index of the TLS entry.
929 * @param pvValue The value to store.
930 *
931 * @remarks Note that NULL is considered a special value.
932 */
933RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue);
934
935/** @} */
936
937# endif /* IN_RING3 */
938# endif /* !IN_RC */
939
940/** @} */
941
942RT_C_DECLS_END
943
944#endif
945
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