1 | /* $Id: tls-posix.cpp 8155 2008-04-18 15:16:47Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Thread Local Storage (TLS), POSIX.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | *
|
---|
26 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /*******************************************************************************
|
---|
33 | * Header Files *
|
---|
34 | *******************************************************************************/
|
---|
35 | #define LOG_GROUP RTLOGGROUP_THREAD
|
---|
36 | #include <errno.h>
|
---|
37 | #include <pthread.h>
|
---|
38 |
|
---|
39 | #include <iprt/thread.h>
|
---|
40 | #include <iprt/log.h>
|
---|
41 | #include <iprt/assert.h>
|
---|
42 | #include <iprt/err.h>
|
---|
43 |
|
---|
44 |
|
---|
45 | AssertCompile(sizeof(pthread_key_t) == sizeof(RTTLS));
|
---|
46 |
|
---|
47 |
|
---|
48 | RTR3DECL(int) RTTlsAlloc(void)
|
---|
49 | {
|
---|
50 | pthread_key_t iTls = NIL_RTTLS;
|
---|
51 | int rc = pthread_key_create(&iTls, NULL);
|
---|
52 | if (!rc)
|
---|
53 | {
|
---|
54 | Assert((RTTLS)iTls != NIL_RTTLS);
|
---|
55 | return iTls;
|
---|
56 | }
|
---|
57 | return NIL_RTTLS;
|
---|
58 | }
|
---|
59 |
|
---|
60 |
|
---|
61 | RTR3DECL(int) RTTlsAllocEx(PRTTLS piTls, PFNRTTLSDTOR pfnDestructor)
|
---|
62 | {
|
---|
63 | pthread_key_t iTls = NIL_RTTLS;
|
---|
64 | int rc = pthread_key_create(&iTls, pfnDestructor);
|
---|
65 | if (!rc)
|
---|
66 | {
|
---|
67 | *piTls = iTls;
|
---|
68 | Assert((pthread_key_t)*piTls == iTls);
|
---|
69 | Assert(*piTls != NIL_RTTLS);
|
---|
70 | return VINF_SUCCESS;
|
---|
71 | }
|
---|
72 | return RTErrConvertFromErrno(rc);
|
---|
73 | }
|
---|
74 |
|
---|
75 |
|
---|
76 | RTR3DECL(int) RTTlsFree(RTTLS iTls)
|
---|
77 | {
|
---|
78 | if (iTls == NIL_RTTLS)
|
---|
79 | return VINF_SUCCESS;
|
---|
80 | int rc = pthread_key_delete(iTls);
|
---|
81 | if (!rc)
|
---|
82 | return VINF_SUCCESS;
|
---|
83 | return RTErrConvertFromErrno(rc);
|
---|
84 | }
|
---|
85 |
|
---|
86 |
|
---|
87 | RTR3DECL(void *) RTTlsGet(RTTLS iTls)
|
---|
88 | {
|
---|
89 | return pthread_getspecific(iTls);
|
---|
90 | }
|
---|
91 |
|
---|
92 |
|
---|
93 | RTR3DECL(int) RTTlsGetEx(RTTLS iTls, void **ppvValue)
|
---|
94 | {
|
---|
95 | if (RT_UNLIKELY(iTls == NIL_RTTLS))
|
---|
96 | return VERR_INVALID_PARAMETER;
|
---|
97 | *ppvValue = pthread_getspecific(iTls);
|
---|
98 | return VINF_SUCCESS;
|
---|
99 | }
|
---|
100 |
|
---|
101 |
|
---|
102 | RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue)
|
---|
103 | {
|
---|
104 | int rc = pthread_setspecific(iTls, pvValue);
|
---|
105 | if (RT_UNLIKELY(rc != 0))
|
---|
106 | return RTErrConvertFromErrno(rc);
|
---|
107 | return VINF_SUCCESS;
|
---|
108 | }
|
---|
109 |
|
---|