Apache Log4cxx
Version 1.8.0
Toggle main menu visibility
Loading...
Searching...
No Matches
threadlocal.h
Go to the documentation of this file.
1
/*
2
* Licensed to the Apache Software Foundation (ASF) under one or more
3
* contributor license agreements. See the NOTICE file distributed with
4
* this work for additional information regarding copyright ownership.
5
* The ASF licenses this file to You under the Apache License, Version 2.0
6
* (the "License"); you may not use this file except in compliance with
7
* the License. You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
18
#ifndef _LOG4CXX_HELPERS_THREAD_LOCAL_H
19
#define _LOG4CXX_HELPERS_THREAD_LOCAL_H
20
#if LOG4CXX_ABI_VERSION <= 15
21
22
#include <log4cxx/log4cxx.h>
23
#include <
log4cxx/helpers/pool.h
>
24
25
#if !defined(LOG4CXX_THREAD_FUNC)
26
#if defined(_WIN32)
27
#define LOG4CXX_THREAD_FUNC __stdcall
28
#else
29
#define LOG4CXX_THREAD_FUNC
30
#endif
31
#endif
32
33
34
extern
"C"
{
35
struct
apr_threadkey_t;
36
}
37
38
namespace
LOG4CXX_NS
39
{
40
namespace
helpers
41
{
42
49
class
LOG4CXX_EXPORT
ThreadLocal
50
{
51
public
:
55
ThreadLocal
();
59
~ThreadLocal
();
64
void
set
(
void
* priv);
69
void
*
get
();
70
71
private
:
75
ThreadLocal
(
const
ThreadLocal
&);
79
ThreadLocal
& operator=(
const
ThreadLocal
&);
80
81
static
apr_threadkey_t* create(
Pool
& p);
82
83
Pool
p;
84
apr_threadkey_t* key;
85
};
86
}
// namespace helpers
87
}
// namespace log4cxx
88
89
#endif
// LOG4CXX_ABI_VERSION <= 15
90
91
#endif
//_LOG4CXX_HELPERS_THREAD_LOCAL_H
log4cxx::helpers::Pool
Definition
pool.h:33
log4cxx::helpers::ThreadLocal::~ThreadLocal
~ThreadLocal()
Destructor.
log4cxx::helpers::ThreadLocal::ThreadLocal
ThreadLocal()
Create new instance.
log4cxx::helpers::ThreadLocal::set
void set(void *priv)
Sets the value in the current thread's copy of this thread-local variable.
log4cxx::helpers::ThreadLocal::get
void * get()
Returns the value in the current thread's copy of this thread-local variable.
pool.h
src
main
include
log4cxx
helpers
threadlocal.h
Generated by
1.17.0 on
SITE_PUBLISHED_DATE
Copyright © 2017-2026
Apache Software Foundation
. Apache, Chainsaw, log4cxx, Log4j, Log4net, log4php and the Apache logo are
trademarks or registered trademarks
of The Apache Software Foundation.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
Privacy Policy
.