VirtualBox

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

Last change on this file since 77807 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

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