1 | /* $Id: tstRTTls-1.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Thread Local Storage (TLS).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2020-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/thread.h>
|
---|
42 |
|
---|
43 | #include <iprt/asm.h>
|
---|
44 | #include <iprt/errcore.h>
|
---|
45 | #include <iprt/test.h>
|
---|
46 | #include <iprt/time.h>
|
---|
47 |
|
---|
48 |
|
---|
49 | /*********************************************************************************************************************************
|
---|
50 | * Global Variables *
|
---|
51 | *********************************************************************************************************************************/
|
---|
52 | static RTTEST g_hTest;
|
---|
53 | static uint32_t volatile g_cDtorCalls = 0;
|
---|
54 |
|
---|
55 | /**
|
---|
56 | * @callback_method_impl{FNRTTLSDTOR}
|
---|
57 | */
|
---|
58 | static DECLCALLBACK(void) testDtorCallback(void *pvValue)
|
---|
59 | {
|
---|
60 | RTTEST_CHECK(g_hTest, pvValue != NULL);
|
---|
61 | ASMAtomicIncU32(&g_cDtorCalls);
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | static DECLCALLBACK(int) testDtorThread1(RTTHREAD hSelf, void *pvUser)
|
---|
66 | {
|
---|
67 | RTTEST_CHECK_RC(g_hTest, RTTlsSet((RTTLS)pvUser, hSelf), VINF_SUCCESS);
|
---|
68 | return VINF_SUCCESS;
|
---|
69 | }
|
---|
70 |
|
---|
71 |
|
---|
72 | static void testDtor(void)
|
---|
73 | {
|
---|
74 | RTTestISub("TLS Destructors");
|
---|
75 |
|
---|
76 | g_cDtorCalls = 0;
|
---|
77 | RTTLS iTls;
|
---|
78 | int rc = RTTlsAllocEx(&iTls, testDtorCallback);
|
---|
79 | if (rc == VERR_NOT_SUPPORTED)
|
---|
80 | {
|
---|
81 | RTTestSkipped(g_hTest, "RTTlsAllocEx -> VERR_NOT_SUPPORTED");
|
---|
82 | return;
|
---|
83 | }
|
---|
84 | RTTESTI_CHECK_RC_RETV(rc, VINF_SUCCESS);
|
---|
85 |
|
---|
86 | RTTHREAD ahThreads[16];
|
---|
87 | uint32_t cThreads = 0;
|
---|
88 | while (cThreads < RT_ELEMENTS(ahThreads))
|
---|
89 | {
|
---|
90 | RTTESTI_CHECK_RC_BREAK(RTThreadCreateF(&ahThreads[cThreads], testDtorThread1, (void *)iTls, 0, RTTHREADTYPE_DEFAULT,
|
---|
91 | RTTHREADFLAGS_WAITABLE, "dtor-%u", cThreads), VINF_SUCCESS);
|
---|
92 | cThreads++;
|
---|
93 | }
|
---|
94 | uint32_t const cExpectedDtorCalls = cThreads;
|
---|
95 |
|
---|
96 | while (cThreads-- > 0)
|
---|
97 | RTTESTI_CHECK_RC(RTThreadWait(ahThreads[cThreads], RT_MS_30SEC, NULL), VINF_SUCCESS);
|
---|
98 |
|
---|
99 | /* RTThreadWait will return while the native portition of the thread may
|
---|
100 | still be shutting down, so we need to fudge a little here. */
|
---|
101 | uint64_t const nsStart = RTTimeNanoTS();
|
---|
102 | RTMSINTERVAL nsSleep = 2;
|
---|
103 | while ( ASMAtomicReadU32(&g_cDtorCalls) != cExpectedDtorCalls
|
---|
104 | && RTTimeNanoTS() - nsStart < RT_NS_10SEC)
|
---|
105 | {
|
---|
106 | nsSleep = RT_MAX(nsSleep + 1, 128);
|
---|
107 | RTThreadSleep(nsSleep);
|
---|
108 | }
|
---|
109 |
|
---|
110 | uint32_t cCalls = ASMAtomicReadU32(&g_cDtorCalls);
|
---|
111 | if (cCalls != cExpectedDtorCalls)
|
---|
112 | RTTestFailed(g_hTest, "%u dtor calls, expected %u\n", cCalls, cExpectedDtorCalls);
|
---|
113 |
|
---|
114 | RTTESTI_CHECK_RC(RTTlsFree(iTls), VINF_SUCCESS);
|
---|
115 | }
|
---|
116 |
|
---|
117 |
|
---|
118 | int main()
|
---|
119 | {
|
---|
120 | RTEXITCODE rcExit = RTTestInitAndCreate("tstRTStrCatCopy", &g_hTest);
|
---|
121 | if (rcExit != RTEXITCODE_SUCCESS)
|
---|
122 | return rcExit;
|
---|
123 |
|
---|
124 | testDtor();
|
---|
125 |
|
---|
126 | return RTTestSummaryAndDestroy(g_hTest);
|
---|
127 | }
|
---|
128 |
|
---|