File: tls.h

package info (click to toggle)
wxwidgets3.0 3.0.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 120,808 kB
  • ctags: 118,010
  • sloc: cpp: 889,420; makefile: 52,980; ansic: 21,933; sh: 5,603; python: 2,935; xml: 1,534; perl: 281
file content (67 lines) | stat: -rw-r--r-- 2,585 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/////////////////////////////////////////////////////////////////////////////
// Name:        wx/tls.h
// Purpose:     wxTLS_TYPE()
// Author:      Vadim Zeitlin
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

/**
    Macro to be used for thread-specific variables declarations.

    This macro can be used to define thread-specific variables of the specified
    @a type. Such variables must be global or static and must be POD, i.e.
    not have any constructors or destructor (even implicitly generated by the
    compiler due to use of base classes or members which are not POD in a
    struct).

    Example of use:
    @code
    struct PerThreadData
    {
        ... data which will be different for every thread ...
    };

    static wxTLS_TYPE(PerThreadData) s_threadDataVar;
    #define s_threadData (wxTLS_VALUE(s_threadDataVar))

    ... use s_threadData as a variable of type PerThreadData ...
    @endcode

    Notice that the use of the ugly wxTLS_VALUE() macro is unfortunately
    required if you need to support platforms without native compiler support
    for thread-specific variables. If you compile your code only on platforms
    which do have such support (recent versions of GNU C++ compiler, Microsoft
    Visual C++ and Sun C++ compiler are known to have it), you can avoid it and
    use the variable directly.
 */
#define wxTLS_TYPE(type) compiler-dependent-implementation

/**
    Macro to access thread-specific variables.

    This macro is used to hide the difference in implementation of
    thread-specific variables under different platforms: they can be of type T
    used in wxTLS_TYPE() if they are directly supported by the compiler or of
    type emulating @c T @c *, i.e. a pointer to this type otherwise. This macro
    always returns an expression of type @c T itself.

    As shown in wxTLS_TYPE() example, you may want to @c \#define a symbol
    wrapping a thread-specific variable with this macro. And, as also explained
    in wxTLS_TYPE() documentation, you may avoid using it entirely if you
    target only recent compilers.

    @see wxTLS_PTR()
 */
#define wxTLS_VALUE(var)

/**
    Macro to return address of a thread-specific variables.

    This macro is similar to wxTLS_VALUE() except that it always returns a
    pointer to the type of thread-specific variable.

    Notice that this is not a constant expression even if the macro is defined
    simply as @c &var -- the value returned is still different for every
    thread.
 */
#define wxTLS_PTR(var)