VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/posix/tls-posix.cpp@ 43363

Last change on this file since 43363 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.8 KB
Line 
1/* $Id: tls-posix.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT - Thread Local Storage (TLS), POSIX.
4 */
5
6/*
7 * Copyright (C) 2008 Oracle Corporation
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
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#define LOG_GROUP RTLOGGROUP_THREAD
32#include <errno.h>
33#include <pthread.h>
34
35#include <iprt/thread.h>
36#include <iprt/log.h>
37#include <iprt/assert.h>
38#include <iprt/err.h>
39
40
41AssertCompile(sizeof(pthread_key_t) <= sizeof(RTTLS));
42
43
44RTR3DECL(RTTLS) RTTlsAlloc(void)
45{
46 pthread_key_t iTls = (pthread_key_t)NIL_RTTLS;
47 int rc = pthread_key_create(&iTls, NULL);
48 if (!rc)
49 {
50 Assert(iTls != (pthread_key_t)NIL_RTTLS);
51 return iTls;
52 }
53 return NIL_RTTLS;
54}
55
56
57RTR3DECL(int) RTTlsAllocEx(PRTTLS piTls, PFNRTTLSDTOR pfnDestructor)
58{
59 pthread_key_t iTls = (pthread_key_t)NIL_RTTLS;
60 int rc = pthread_key_create(&iTls, pfnDestructor);
61 if (!rc)
62 {
63 *piTls = iTls;
64 Assert((pthread_key_t)*piTls == iTls);
65 Assert(*piTls != NIL_RTTLS);
66 return VINF_SUCCESS;
67 }
68 return RTErrConvertFromErrno(rc);
69}
70
71
72RTR3DECL(int) RTTlsFree(RTTLS iTls)
73{
74 if (iTls == NIL_RTTLS)
75 return VINF_SUCCESS;
76 int rc = pthread_key_delete(iTls);
77 if (!rc)
78 return VINF_SUCCESS;
79 return RTErrConvertFromErrno(rc);
80}
81
82
83RTR3DECL(void *) RTTlsGet(RTTLS iTls)
84{
85 return pthread_getspecific(iTls);
86}
87
88
89RTR3DECL(int) RTTlsGetEx(RTTLS iTls, void **ppvValue)
90{
91 if (RT_UNLIKELY(iTls == NIL_RTTLS))
92 return VERR_INVALID_PARAMETER;
93 *ppvValue = pthread_getspecific(iTls);
94 return VINF_SUCCESS;
95}
96
97
98RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue)
99{
100 int rc = pthread_setspecific(iTls, pvValue);
101 if (RT_UNLIKELY(rc != 0))
102 return RTErrConvertFromErrno(rc);
103 return VINF_SUCCESS;
104}
105
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